Adjust minimum height of MainWindow to 720px for better UI element accommodation

This commit is contained in:
2025-07-31 15:19:49 +02:00
parent 9f38776a5a
commit a9965493e8
+1 -1
View File
@@ -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