From 32efa33c04c3448f83bb03a5eff83e249e9d5885 Mon Sep 17 00:00:00 2001 From: "DHR.Mike" Date: Sat, 13 Dec 2025 12:49:14 -0800 Subject: [PATCH] Update Uptated-Prototype/PiperTTS-GUI-Test.py --- Uptated-Prototype/PiperTTS-GUI-Test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Uptated-Prototype/PiperTTS-GUI-Test.py b/Uptated-Prototype/PiperTTS-GUI-Test.py index dcb428f..6b49365 100644 --- a/Uptated-Prototype/PiperTTS-GUI-Test.py +++ b/Uptated-Prototype/PiperTTS-GUI-Test.py @@ -24,7 +24,7 @@ Root_Window.geometry(f'{Window_Width}x{Window_Height}+{int(Window_PosX)}+{int(Wi # Attempts to create a Input Frame try: - Input_Box_Frame = Frame(Root_Window) + Input_Box_Frame = ttk.Frame(Root_Window) except Exception as e: print(e, type(e)) print("An exception occurred - when creating input Frame.") @@ -58,7 +58,7 @@ except Exception as e: # Attempts to create a scrollbar for the Input box try: - Main_Text_Scrollbar = Scrollbar(Input_Box_Frame, command = Input_Box_Frame.yview) + 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.place(relx = 1, rely = 0, relheight = 1, anchor = "ne") except Exception as e: