From 2dc846f556e0852b61c19ddc19c62c37496e3f85 Mon Sep 17 00:00:00 2001 From: "DHR.Mike" Date: Sat, 13 Dec 2025 12:57:36 -0800 Subject: [PATCH] Update Uptated-Prototype/PiperTTS-GUI-Test.py --- Uptated-Prototype/PiperTTS-GUI-Test.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Uptated-Prototype/PiperTTS-GUI-Test.py b/Uptated-Prototype/PiperTTS-GUI-Test.py index 6b49365..ebe6670 100644 --- a/Uptated-Prototype/PiperTTS-GUI-Test.py +++ b/Uptated-Prototype/PiperTTS-GUI-Test.py @@ -30,13 +30,13 @@ except Exception as e: print("An exception occurred - when creating input Frame.") # Attempts to create a Controls Frame try: - Controls_Box_Frame = Frame(Root_Window) + Controls_Box_Frame = ttk.Frame(Root_Window) except Exception as e: print(e, type(e)) print("An exception occurred - when creating Controls Frame.") # Attempts to create a Prefrences Frame try: - Prefrences_Frame = Frame(Root_Window) + Prefrences_Frame = ttk.Frame(Root_Window) except Exception as e: print(e, type(e)) print("An exception occurred - when creating Controls Frame.") @@ -58,8 +58,8 @@ except Exception as e: # Attempts to create a scrollbar for the Input box try: - Main_Text_Scrollbar = ttk.Scrollbar(Input_Box_Frame, command = Input_Box_Frame.yview) - Input_Box_Frame.configure(yscrollcommand = Main_Text_Scrollbar.set) + Main_Text_Scrollbar = ttk.Scrollbar(Input_Box_Frame, orient = "vertical", command = Input_Box.yview) + Input_Box.configure(yscrollcommand = Main_Text_Scrollbar.set) Main_Text_Scrollbar.place(relx = 1, rely = 0, relheight = 1, anchor = "ne") except Exception as e: print(e, type(e))