From 21f85940fc9b3e4b73ce56e1aaa03ae6b14269a1 Mon Sep 17 00:00:00 2001 From: Heliguy Date: Tue, 6 Feb 2024 10:53:24 -0500 Subject: [PATCH] Fix improper gsettings get, causing filter window to crash --- src/filter_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/filter_window.py b/src/filter_window.py index 9a38e8a..ee728ad 100644 --- a/src/filter_window.py +++ b/src/filter_window.py @@ -45,7 +45,7 @@ class FilterWindow(Adw.Window): self.apply_button.set_sensitive(False) return - if(show_apps == self.settings.get_boolean("show-apps")) and (show_runtimes == self.settings.get_boolean("show-runtimes")) and (self.remotes_string_staging == self.settings.get_string("remotes-list").split(',')) and (self.runtimes_string_staging == self.settings.get_string("runtimes-string").split(',')): + if(show_apps == self.settings.get_boolean("show-apps")) and (show_runtimes == self.settings.get_boolean("show-runtimes")) and (self.remotes_string_staging == self.settings.get_string("remotes-list").split(',')) and (self.runtimes_string_staging == self.settings.get_string("runtimes-list").split(',')): self.apply_button.set_sensitive(False) return