From 6eb77a1b6f37a97a4b8904789584e434f70a5a75 Mon Sep 17 00:00:00 2001 From: ShikiSuen Date: Fri, 7 Oct 2022 10:02:58 +0800 Subject: [PATCH] ClientMgr // Tweak NSAlert sheet size. --- Source/Modules/WindowControllers/ctlClientListMgr.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Modules/WindowControllers/ctlClientListMgr.swift b/Source/Modules/WindowControllers/ctlClientListMgr.swift index 019e0c71..e6dc2093 100644 --- a/Source/Modules/WindowControllers/ctlClientListMgr.swift +++ b/Source/Modules/WindowControllers/ctlClientListMgr.swift @@ -54,7 +54,7 @@ extension ctlClientListMgr { alert.addButton(withTitle: NSLocalizedString("Cancel", comment: "")) let maxFloat = Double(Float.greatestFiniteMagnitude) - let scrollview = NSScrollView(frame: NSRect(x: 0, y: 0, width: 370, height: 380)) + let scrollview = NSScrollView(frame: NSRect(x: 0, y: 0, width: 370, height: 200)) let contentSize = scrollview.contentSize scrollview.borderType = .noBorder scrollview.hasVerticalScroller = true