From f408eb9dc70cd29b31502047f384590a6fda59c5 Mon Sep 17 00:00:00 2001 From: RapidStoned <111416165+VirtualRabb@users.noreply.github.com> Date: Sun, 28 Aug 2022 18:40:25 +0200 Subject: [PATCH] Sync fix Forgot to save silence duration in tts settings, that is now fixed --- GUI.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/GUI.py b/GUI.py index fbef5ff..4505939 100644 --- a/GUI.py +++ b/GUI.py @@ -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()