From a96cd6c26a180d83259a4ca45398d474ee91660a Mon Sep 17 00:00:00 2001 From: Austin Condiff Date: Wed, 20 Mar 2024 13:11:28 -0500 Subject: [PATCH] Replaced split symbols with split squares with plus --- CodeEdit.xcodeproj/project.pbxproj | 2 +- .../project.xcworkspace/xcshareddata/swiftpm/Package.resolved | 4 ++-- .../Editor/TabBar/Views/EditorTabBarTrailingAccessories.swift | 4 ++-- .../Views/StatusBarItems/StatusBarBreakpointButton.swift | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CodeEdit.xcodeproj/project.pbxproj b/CodeEdit.xcodeproj/project.pbxproj index b39a549a56..2f688aed6a 100644 --- a/CodeEdit.xcodeproj/project.pbxproj +++ b/CodeEdit.xcodeproj/project.pbxproj @@ -4732,7 +4732,7 @@ repositoryURL = "https://github.com/CodeEditApp/CodeEditSymbols"; requirement = { kind = exactVersion; - version = 0.1.4; + version = 0.2.1; }; }; 287136B1292A407E00E9F5F4 /* XCRemoteSwiftPackageReference "SwiftLintPlugin" */ = { diff --git a/CodeEdit.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved b/CodeEdit.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved index 040dc189fd..0faa06d943 100644 --- a/CodeEdit.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved +++ b/CodeEdit.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved @@ -41,8 +41,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/CodeEditApp/CodeEditSymbols", "state" : { - "revision" : "26cab264914f2648ab70ab6833eef331c2f3a38a", - "version" : "0.1.4" + "revision" : "8262a5de7504cba4fc7da033b24b7f679c634800", + "version" : "0.2.1" } }, { diff --git a/CodeEdit/Features/Editor/TabBar/Views/EditorTabBarTrailingAccessories.swift b/CodeEdit/Features/Editor/TabBar/Views/EditorTabBarTrailingAccessories.swift index f023729ca1..d938c89859 100644 --- a/CodeEdit/Features/Editor/TabBar/Views/EditorTabBarTrailingAccessories.swift +++ b/CodeEdit/Features/Editor/TabBar/Views/EditorTabBarTrailingAccessories.swift @@ -45,7 +45,7 @@ struct EditorTabBarTrailingAccessories: View { Button { split(edge: .bottom) } label: { - Image(systemName: "square.split.1x2") + Image(symbol: "square.split.horizontal.plus") } .help("Split Vertically") @@ -53,7 +53,7 @@ struct EditorTabBarTrailingAccessories: View { Button { split(edge: .trailing) } label: { - Image(systemName: "square.split.2x1") + Image(symbol: "square.split.vertical.plus") } .help("Split Horizontally") diff --git a/CodeEdit/Features/StatusBar/Views/StatusBarItems/StatusBarBreakpointButton.swift b/CodeEdit/Features/StatusBar/Views/StatusBarItems/StatusBarBreakpointButton.swift index 770fd8bdd5..c331b6ddf8 100644 --- a/CodeEdit/Features/StatusBar/Views/StatusBarItems/StatusBarBreakpointButton.swift +++ b/CodeEdit/Features/StatusBar/Views/StatusBarItems/StatusBarBreakpointButton.swift @@ -16,7 +16,7 @@ struct StatusBarBreakpointButton: View { model.isBreakpointEnabled.toggle() } label: { if model.isBreakpointEnabled { - Image.breakpoint_fill + Image.breakpointFill .foregroundColor(.accentColor) } else { Image.breakpoint