From 05e2cdc23fc11a6e0286de830baf75c6db75b626 Mon Sep 17 00:00:00 2001 From: admin Date: Thu, 25 Jan 2024 19:52:32 +0100 Subject: [PATCH] set fixed size for the game --- src/gui_main.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/gui_main.py b/src/gui_main.py index 8a46a75..9a604ed 100644 --- a/src/gui_main.py +++ b/src/gui_main.py @@ -11,6 +11,10 @@ def run_installer(download_folder_tmp): app = CTk() app.geometry("800x600") + app.title("Spitfire Installer") + + app.minsize(width=800, height=600) + app.maxsize(width=800, height=600) set_default_color_theme("dark-blue") set_appearance_mode("dark")