Forgot to save silence duration in tts settings, that is now fixed
pull/1207/head
RapidStoned 3 years ago
parent e3f2a9b132
commit f408eb9dc7

@ -698,6 +698,9 @@ class App(customtkinter.CTk):
# py_voice_num
self.tts_py_voice_num.set(config["settings"]["tts"]["py_voice_num"])
# silence_duration
self.tts_silence_duration.insert(config["settings"]["tts"]["silence_duration"])
# Background settings
# background choice
@ -893,6 +896,7 @@ class App(customtkinter.CTk):
self.destroy()
shutdown()
def launchGui():
if __name__ == "__main__":
app = App()

Loading…
Cancel
Save