Update Uptated-Prototype/tkinter-Test.py

This commit is contained in:
2025-12-19 14:48:46 -08:00
parent c54a54fed5
commit 140e5e7b39

View File

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