From 9df53f080affb66d88830101a37d064a972b5f7f Mon Sep 17 00:00:00 2001 From: Vinicius Moreira Date: Fri, 12 Jul 2019 10:25:34 -0300 Subject: [PATCH] fix: keeping upgrade button enabled when there are no upgrades selected --- fpakman/view/qt/apps_table.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fpakman/view/qt/apps_table.py b/fpakman/view/qt/apps_table.py index 7b55a4bc..70878070 100644 --- a/fpakman/view/qt/apps_table.py +++ b/fpakman/view/qt/apps_table.py @@ -33,7 +33,7 @@ class UpdateToggleButton(QToolButton): self.click() def change_state(self, not_checked: bool): - self.app_view.updated_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.root.change_update_state()