From 8a42747daa6cdc8c160831ffeea5a0f0928a7d2c Mon Sep 17 00:00:00 2001 From: "DHR.Mike" Date: Fri, 19 Dec 2025 15:04:39 -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 914ccd0..c93bc93 100644 --- a/Uptated-Prototype/tkinter-Test.py +++ b/Uptated-Prototype/tkinter-Test.py @@ -18,14 +18,14 @@ except Exception as e: print("An exception occurred - when creating input Frame.") # Attempts to create a Controls Frame try: - Controls_Box_Frame = ttk.Frame(Root_Window) + Controls_Box_Frame = ttk.Frame(Root_Window, style="My.TLabel") except Exception as e: print(e, type(e)) print("An exception occurred - when creating Controls Frame.") try: Input_Box_Frame.pack(fill = "both", expand = True) - Controls_Box_Frame.pack(anchor = "center", expand = True, style="My.TLabel") + Controls_Box_Frame.pack(anchor = "center", expand = True) except Exception as e: print(e, type(e)) print("An exception occurred - when placing Frames.")