diff --git a/Sources/VocaMac/App/VocaMacApp.swift b/Sources/VocaMac/App/VocaMacApp.swift index 33ccaa6..e51ea40 100644 --- a/Sources/VocaMac/App/VocaMacApp.swift +++ b/Sources/VocaMac/App/VocaMacApp.swift @@ -24,8 +24,8 @@ final class SettingsWindowManager: ObservableObject { // Create a new window let window = NSWindow( - contentRect: NSRect(x: 0, y: 0, width: 560, height: 480), - styleMask: [.titled, .closable, .miniaturizable], + contentRect: NSRect(x: 0, y: 0, width: 560, height: 520), + styleMask: [.titled, .closable, .miniaturizable, .resizable], backing: .buffered, defer: false ) diff --git a/Sources/VocaMac/Views/SettingsView.swift b/Sources/VocaMac/Views/SettingsView.swift index 066a7df..707bae2 100644 --- a/Sources/VocaMac/Views/SettingsView.swift +++ b/Sources/VocaMac/Views/SettingsView.swift @@ -43,7 +43,7 @@ struct SettingsView: View { Label("About", systemImage: "info.circle") } } - .frame(width: 560, height: 520) + .frame(minWidth: 560, minHeight: 520) } }