Update Uptated-Prototype/PiperTTS-GUI-Test.py

This commit is contained in:
2025-11-24 15:25:05 -08:00
parent a06c113385
commit 67957b16c6

View File

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