From 7c45c51e231f6cb90f84ef599c438e515794d8bc Mon Sep 17 00:00:00 2001 From: Bosco Ho Date: Sun, 25 Aug 2024 13:23:00 -0700 Subject: [PATCH] ~ Tweak layout. --- PyTerm/PyTermApp.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PyTerm/PyTermApp.swift b/PyTerm/PyTermApp.swift index 0df40c7..2f05ecf 100644 --- a/PyTerm/PyTermApp.swift +++ b/PyTerm/PyTermApp.swift @@ -49,11 +49,11 @@ struct PyTermApp: App { Settings { SettingsView() - .frame(minWidth: 420, minHeight: 180) + .frame(minWidth: 420, minHeight: 144) } .environment(\.autoUpdater, updaterController) .windowResizability(.contentMinSize) .defaultPosition(.topTrailing) - .defaultSize(width: 420, height: 180) + .defaultSize(width: 420, height: 144) } }