mirror of
https://github.com/morgan9e/warehouse
synced 2026-04-14 00:04:08 +09:00
Fix improper gsettings get, causing filter window to crash
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user