From fa6b7e07f2294742e5e0caf06890e85ee14965cc Mon Sep 17 00:00:00 2001 From: kienle <kienle@passcal.nmt.edu> Date: Fri, 3 Nov 2023 15:55:26 -0600 Subject: [PATCH] Resize main window to more reasonable size --- sohstationviewer/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sohstationviewer/main.py b/sohstationviewer/main.py index 1127a3ccb..0400069f0 100755 --- a/sohstationviewer/main.py +++ b/sohstationviewer/main.py @@ -70,7 +70,7 @@ def main(): config.apply_config(wnd) screen_width, screen_height = app.primaryScreen().size().toTuple() - wnd.resize(screen_width, screen_height) + wnd.resize(screen_width * (2 / 3), screen_height * (2 / 3)) wnd.show() sys.exit(app.exec_()) -- GitLab