From a9965493e8fae662af12ab29bb89a29d2fc45eee Mon Sep 17 00:00:00 2001 From: Gabriel20xx Date: Thu, 31 Jul 2025 15:19:49 +0200 Subject: [PATCH] Adjust minimum height of MainWindow to 720px for better UI element accommodation --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index da246ee..8870561 100644 --- a/main.py +++ b/main.py @@ -1272,7 +1272,7 @@ class MainWindow(QtWidgets.QMainWindow): self.setWindowTitle('Scenario Image Automation') # Make window larger to accommodate all UI elements min_width = 640 - min_height = 800 + min_height = 720 self.setMinimumSize(min_width, min_height) self.setGeometry(100, 100, min_width, min_height) self.running = False