fix: adjust window size (#41)

This commit is contained in:
Owen Gretzinger
2025-07-24 00:51:51 -04:00
committed by GitHub
parent 3bbbbfe3d5
commit 7c5fd1d2b7
+2 -1
View File
@@ -36,9 +36,10 @@ struct MeetingnotesApp: App {
var body: some Scene { var body: some Scene {
WindowGroup { WindowGroup {
ContentView() ContentView()
.frame(minWidth: 800, minHeight: 600) .frame(minWidth: 700, minHeight: 400)
} }
.windowResizability(.contentSize) .windowResizability(.contentSize)
.defaultSize(width: 1000, height: 600)
.commands { .commands {
CommandGroup(after: .appInfo) { CommandGroup(after: .appInfo) {
CheckForUpdatesView(updater: updaterController.updater) CheckForUpdatesView(updater: updaterController.updater)