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")