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