Skip to content

Commit e42f048

Browse files
authored
macOS: fix issue where the Settings window (via cmd+,) was scaled to be too short when showing the inputs tab (#7117)
* fix an issue where minheight was too short by making minheight a bit bigger * adjusting the sizing a bit more
1 parent ad00029 commit e42f048

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Platform/macOS/SettingsView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ struct SettingsView: View {
4747
.tabItem {
4848
Label("Server", systemImage: "server.rack")
4949
}
50-
}.frame(minWidth: 600, minHeight: 350, alignment: .topLeading)
50+
}.frame(minWidth: 600, minHeight: 370, alignment: .topLeading)
5151
}
5252
}
5353

0 commit comments

Comments
 (0)