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

This commit is contained in:
2025-12-11 10:03:44 -08:00
parent 6fac63dfc4
commit f81474aea7

View File

@@ -241,10 +241,10 @@ C_Button_previous.grid(row=1, column=3)
C_Button_Next.grid(row=1, column=4)
# Prefrences stuff
GUI_Combobox_1_Label = Label(Prefrences_Frame, text="Language?", side="left")
GUI_Combobox_1 = ttk.Combobox(Prefrences_Frame, side="left")
GUI_Combobox_2_Label = Label(Prefrences_Frame, text="Voice?", side="left")
GUI_Combobox_2 = ttk.Combobox(Prefrences_Frame, side="left")
GUI_Combobox_1_Label = Label(Prefrences_Frame, text="Language?", side = LEFT)
GUI_Combobox_1 = ttk.Combobox(Prefrences_Frame, side = LEFT)
GUI_Combobox_2_Label = Label(Prefrences_Frame, text="Voice?", side = LEFT)
GUI_Combobox_2 = ttk.Combobox(Prefrences_Frame, side = LEFT)
GUI_Spinbox_1_Label = Label(Prefrences_Frame, text="volume?")
GUI_Spinbox_1 = ttk.Spinbox(Prefrences_Frame, from_ = 1, to = 100)
GUI_Spinbox_2_Label = Label(Prefrences_Frame, text="length_scale?")