From 67957b16c68cc91a2d4e2f2c58810a7a632b58b6 Mon Sep 17 00:00:00 2001 From: "DHR.Mike" Date: Mon, 24 Nov 2025 15:25:05 -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 68de7bc..4973f48 100644 --- a/Uptated-Prototype/PiperTTS-GUI-Test.py +++ b/Uptated-Prototype/PiperTTS-GUI-Test.py @@ -21,7 +21,7 @@ Root_Window.geometry(f'{Window_Width}x{Window_Height}+{int(Window_PosX)}+{int(Wi try: Input_Box_Frame = Frame(Root_Window) - Input_Box_Frame.grid(row=0, column=0, columnspan=5, padx=10, pady=20, sticky="NWSE") + Input_Box_Frame.grid(row=0, column=0, columnspan=5, padx=10, pady=20, sticky="NSEW") Main_Text_Scrollbar = Scrollbar(Input_Box_Frame) Main_Text_Scrollbar.pack(side=RIGHT, fill=y) @@ -93,7 +93,7 @@ def PiperTTS_GUI_Clipboard(): # Deleting info messages def PiperTTS_GUI_Hide_All_Labels(): try: - for widget in .Custom_Message(): + for widget in Custom_Message.winfo_children(): widget.destroy() except: print("An exception occurred - when attempting to hide previous messages.")