Toggle button fix

This commit is contained in:
Vinícius Moreira
2019-06-14 17:27:38 -03:00
committed by GitHub
parent 8a95d508c8
commit 9ff157d86f
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View File

@@ -2,3 +2,4 @@ env
*.pyc
.idea
__pycache__
*.orig

View File

@@ -34,7 +34,7 @@ class UpdateToggleButton(QToolButton):
def change_state(self, not_checked: bool):
self.model['update_checked'] = not not_checked
self.setIcon(self.icon_on if not not_checked else self.icon_off)
self.root.change_update_button_state()
self.root.change_update_state()
class ManageWindow(QWidget):