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