diff --git a/AppleParty/AppleParty/RootView/APRootWC.swift b/AppleParty/AppleParty/RootView/APRootWC.swift index 4d4a8a6..79c6fea 100644 --- a/AppleParty/AppleParty/RootView/APRootWC.swift +++ b/AppleParty/AppleParty/RootView/APRootWC.swift @@ -59,7 +59,8 @@ class APRootWC: NSWindowController { } } let pannel = NSPanel(contentViewController: vc) - pannel.setFrame(NSRect(origin: .zero, size: NSSize(width: 550, height: 450)), display: true) + pannel.minSize = NSSize(width: 900, height: 680) + pannel.setFrame(NSRect(origin: .zero, size: NSSize(width: 980, height: 760)), display: true) window?.beginSheet(pannel, completionHandler: nil) } }