From ce4facb4d7f65ff6097528b4fe2f631db27e2f6f Mon Sep 17 00:00:00 2001 From: RapidStoned <111416165+VirtualRabb@users.noreply.github.com> Date: Wed, 24 Aug 2022 21:57:19 +0200 Subject: [PATCH] Update GUI.py --- GUI.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/GUI.py b/GUI.py index 4c0cb6d..9d97a43 100644 --- a/GUI.py +++ b/GUI.py @@ -434,7 +434,7 @@ class App(customtkinter.CTk): self.thread_post_lang.insert("0", config["reddit"]["thread"]["post_lang"]) # Min comments - self.thread_min_comment_length("0", config["reddit"]["thread"]["min_comments"]) + self.thread_min_comment_length.insert("0", config["reddit"]["thread"]["min_comments"]) # Misc Settings @@ -442,7 +442,7 @@ class App(customtkinter.CTk): self.misc_allow_nsfw.set(str(config["settings"]["allow_nsfw"])) # Theme - self.misc_theme.insert("0", config["settings"]["theme"]) + self.misc_theme.set(str(config["settings"]["theme"])) # Times to run self.misc_times_to_run.insert("0", config["settings"]["times_to_run"]) @@ -450,6 +450,7 @@ class App(customtkinter.CTk): # Opacity self.misc_opacity.insert("0", config["settings"]["opacity"]) + # Transition