From 07208cb5449254f50274a20228436f9bb9931064 Mon Sep 17 00:00:00 2001 From: "DHR.Mike" Date: Sat, 6 Dec 2025 12:55:42 -0800 Subject: [PATCH] Update Uptated-Prototype/PiperTTS-GUI-Test-2nd.py --- Uptated-Prototype/PiperTTS-GUI-Test-2nd.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Uptated-Prototype/PiperTTS-GUI-Test-2nd.py b/Uptated-Prototype/PiperTTS-GUI-Test-2nd.py index 1482dda..71f7873 100644 --- a/Uptated-Prototype/PiperTTS-GUI-Test-2nd.py +++ b/Uptated-Prototype/PiperTTS-GUI-Test-2nd.py @@ -57,10 +57,10 @@ def PiperTTS_GUI_PlayAndPause(): print("An exception occurred - when pressing Play And Pause Button.") # Creating Buttons -GUI_Button_PlayAndPause = ttk.Button(Controls_Box_Frame, text="▶", pady=5, padx=5, command=PiperTTS_GUI_PlayAndPause) -GUI_Button_Stop = ttk.Button(Controls_Box_Frame, text="⏹", pady=5, padx=5) -GUI_Button_previous = ttk.Button(Controls_Box_Frame, text="⏮", pady=5, padx=5) -GUI_Button_Next = ttk.Button(Controls_Box_Frame, text="⏭", pady=5, padx=5) +GUI_Button_PlayAndPause = ttk.Button(Controls_Box_Frame, text="▶", command=PiperTTS_GUI_PlayAndPause) +GUI_Button_Stop = ttk.Button(Controls_Box_Frame, text="⏹") +GUI_Button_previous = ttk.Button(Controls_Box_Frame, text="⏮") +GUI_Button_Next = ttk.Button(Controls_Box_Frame, text="⏭") # Creating a Test Text Label My_Test_Label = Label(Controls_Box_Frame, text="Test Text?")