From 88e3274d965b97ce37dada02eea005b5d05cd6aa Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 16 Sep 2024 20:24:04 +0530 Subject: [PATCH] Backk --- modules/ui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ui.py b/modules/ui.py index e535d78..8e1022b 100644 --- a/modules/ui.py +++ b/modules/ui.py @@ -213,12 +213,12 @@ def create_root( ctk.set_default_color_theme("blue") root = tkdnd.TkinterDnD.Tk() + root.minsize(ROOT_WIDTH, ROOT_HEIGHT) root.title( f"{modules.metadata.name} {modules.metadata.version} {modules.metadata.edition}" ) root.configure(bg="#1a1a1a") root.protocol("WM_DELETE_WINDOW", lambda: destroy()) - root.resizable(True, True) main_frame = ctk.CTkFrame(root, fg_color="#1a1a1a") main_frame.pack(fill="both", expand=True, padx=20, pady=20)