Skip to content

Commit e5c4fd4

Browse files
committed
Update NavigationSplitViewWrapper.swift
update mini width of sidebar
1 parent ae55e0f commit e5c4fd4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Xcodes/Frontend/Common/NavigationSplitViewWrapper.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ struct NavigationSplitViewWrapper<Sidebar, Detail>: View where Sidebar: View, De
2626

2727
if #available(macOS 14, *) {
2828
sidebar
29-
.navigationSplitViewColumnWidth(min: 250, ideal: 300)
29+
.navigationSplitViewColumnWidth(min: 300, ideal: 300)
3030
} else {
3131
sidebar
3232
}
@@ -39,7 +39,7 @@ struct NavigationSplitViewWrapper<Sidebar, Detail>: View where Sidebar: View, De
3939
NavigationView {
4040
// The first column is the sidebar.
4141
sidebar
42-
.frame(minWidth: 250)
42+
.frame(minWidth: 300)
4343
detail
4444
}
4545
.navigationViewStyle(.columns)

0 commit comments

Comments
 (0)