Skip to content

Commit 66f659a

Browse files
New split editor symbol (#1643)
Replaced split symbols with split squares with plus
1 parent aecf3d4 commit 66f659a

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

CodeEdit.xcodeproj/project.pbxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4732,7 +4732,7 @@
47324732
repositoryURL = "https://github.com/CodeEditApp/CodeEditSymbols";
47334733
requirement = {
47344734
kind = exactVersion;
4735-
version = 0.1.4;
4735+
version = 0.2.1;
47364736
};
47374737
};
47384738
287136B1292A407E00E9F5F4 /* XCRemoteSwiftPackageReference "SwiftLintPlugin" */ = {

CodeEdit.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

CodeEdit/Features/Editor/TabBar/Views/EditorTabBarTrailingAccessories.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,15 @@ struct EditorTabBarTrailingAccessories: View {
4545
Button {
4646
split(edge: .bottom)
4747
} label: {
48-
Image(systemName: "square.split.1x2")
48+
Image(symbol: "square.split.horizontal.plus")
4949
}
5050
.help("Split Vertically")
5151

5252
case (.vertical, true), (.horizontal, false):
5353
Button {
5454
split(edge: .trailing)
5555
} label: {
56-
Image(systemName: "square.split.2x1")
56+
Image(symbol: "square.split.vertical.plus")
5757
}
5858
.help("Split Horizontally")
5959

CodeEdit/Features/StatusBar/Views/StatusBarItems/StatusBarBreakpointButton.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ struct StatusBarBreakpointButton: View {
1616
model.isBreakpointEnabled.toggle()
1717
} label: {
1818
if model.isBreakpointEnabled {
19-
Image.breakpoint_fill
19+
Image.breakpointFill
2020
.foregroundColor(.accentColor)
2121
} else {
2222
Image.breakpoint

0 commit comments

Comments
 (0)