From 3f154d3c54a1b542407fcc18e21c12a1eb78deea Mon Sep 17 00:00:00 2001 From: "DHR.Mike" Date: Fri, 19 Dec 2025 15:09:58 -0800 Subject: [PATCH] Update Uptated-Prototype/tkinter-Test.py --- Uptated-Prototype/tkinter-Test.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Uptated-Prototype/tkinter-Test.py b/Uptated-Prototype/tkinter-Test.py index 9579102..5627fe4 100644 --- a/Uptated-Prototype/tkinter-Test.py +++ b/Uptated-Prototype/tkinter-Test.py @@ -38,10 +38,9 @@ My_Test_Label4 = Label(Controls_Box_Frame, text="Fourth Label", background = "ye My_Test_Label.pack(fill = "both", expand = True) -My_Test_Label2.grid(row=0, column=0) -My_Test_Label3.grid(row=0, column=1) -My_Test_Label4.grid(row=0, column=2) - +My_Test_Label2.pack(side = "left") +My_Test_Label3.pack(side = "left") +My_Test_Label4.pack(side = "left") Root_Window.mainloop()