fix: applying filters when checking / unchecking app to upgrade

This commit is contained in:
Vinicius Moreira
2019-07-24 17:32:47 -03:00
parent f43196e79e
commit 1378464967

View File

@@ -35,7 +35,7 @@ class UpdateToggleButton(QToolButton):
def change_state(self, not_checked: bool): def change_state(self, not_checked: bool):
self.app_view.update_checked = not not_checked self.app_view.update_checked = not not_checked
self.setIcon(self.icon_on if not not_checked else self.icon_off) self.setIcon(self.icon_on if not not_checked else self.icon_off)
self.root.change_update_state() self.root.change_update_state(change_filters=False)
class AppsTable(QTableWidget): class AppsTable(QTableWidget):