From 140e5e7b39dd46156017453a366768af0218af89 Mon Sep 17 00:00:00 2001 From: "DHR.Mike" Date: Fri, 19 Dec 2025 14:48:46 -0800 Subject: [PATCH] Update Uptated-Prototype/tkinter-Test.py --- Uptated-Prototype/tkinter-Test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Uptated-Prototype/tkinter-Test.py b/Uptated-Prototype/tkinter-Test.py index f0b123a..279df6b 100644 --- a/Uptated-Prototype/tkinter-Test.py +++ b/Uptated-Prototype/tkinter-Test.py @@ -34,8 +34,8 @@ My_Test_Label = Label(Input_Box_Frame, text="First Label", background = "red", j My_Test_Label2 = Label(Controls_Box_Frame, text="Second Label", background = "blue", justify = "center") -My_Test_Label.pack() -My_Test_Label2.pack() +My_Test_Label.pack(fill = "both", expand = True) +My_Test_Label2.pack(fill = "both", expand = True) Root_Window.mainloop()