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.")