From 40109183f8b2dfbe44bce52d907dce0339eba815 Mon Sep 17 00:00:00 2001 From: Samuel Walker Date: Thu, 20 Jun 2024 09:09:38 -0600 Subject: [PATCH] make tabs fill parent --- Main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Main.py b/Main.py index a58819a..422ce43 100644 --- a/Main.py +++ b/Main.py @@ -57,7 +57,7 @@ def main(): # Tabs to seperate options from launching the game guitabs = CTkTabview(master=app) - guitabs.pack(padx=0, pady=0) + guitabs.pack(expand=True, fill='both', padx=0, pady=0) guitabs.add("Launcher") guitabs.add("Options")