From df25f9403586d546efc820d73ad9802b0db0270c Mon Sep 17 00:00:00 2001 From: zeng Date: Tue, 9 Jun 2026 14:24:12 +0800 Subject: [PATCH] 1 --- AppleParty/AppleParty/RootView/APRootWC.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) } }