Skip to content

Commit 4f57027

Browse files
committed
fix: remove maximum width for split columns
fixes #14
1 parent 323c62d commit 4f57027

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

mtimelog/ContentView.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ struct ContentView: View {
1111
var body: some View {
1212
NavigationSplitView {
1313
NavigationBar()
14-
.navigationSplitViewColumnWidth(min: 120, ideal: 200, max: 200)
14+
.navigationSplitViewColumnWidth(min: 120, ideal: 200)
1515
} content: {
1616
ContentUnavailableView("No Working Day selected", systemImage: "calendar")
17-
.navigationSplitViewColumnWidth(min: 210, ideal: 500, max: 600)
17+
.navigationSplitViewColumnWidth(min: 210, ideal: 500)
1818
} detail: {
1919
ContentUnavailableView("No Task selected", systemImage: "tray")
20-
.navigationSplitViewColumnWidth(min: 200, ideal: 500, max: 600)
20+
.navigationSplitViewColumnWidth(min: 200, ideal: 500)
2121
}
2222
}
2323
}

0 commit comments

Comments
 (0)