From deb9439237b971ec1bd8b73186f60aed171c0d05 Mon Sep 17 00:00:00 2001 From: Cuptain Date: Fri, 21 Jun 2024 11:00:20 +1000 Subject: [PATCH] changing gui layout --- Main.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Main.py b/Main.py index c715d8f..026a151 100644 --- a/Main.py +++ b/Main.py @@ -60,6 +60,10 @@ def main(): set_appearance_mode("dark") set_default_color_theme("blue") + #Add a frame for the tabs + tab_frame = CTkFrame(master=app) + tab_frame.pack() + #Title image titleimage = Image.open(Backend.resource_path("Title.png")) @@ -71,7 +75,7 @@ def main(): # Tabs to seperate options from launching the game guitabs = CTkTabview(master=app, bg_color="transparent", corner_radius=20) - guitabs.pack(expand=True, fill='both', side="bottom", padx=0, pady=(0)) + guitabs.pack(expand=True, fill='y', padx=0, pady=(0), anchor="ne") guitabs.add("Launcher")