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