Skip to content

Commit

Permalink
Fixed unnecessary property set in Global Settings
Browse files Browse the repository at this point in the history
  • Loading branch information
marmarta committed May 3, 2019
1 parent b9316bc commit 733f00d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion qubesmanager/global_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,8 @@ def __apply_updates__(self):
'service.qubes-update-check'] = \
self.updates_dom0.isChecked()

self.qvm_collection.check_updates_vm = self.updates_vm.isChecked()
if self.qvm_collection.check_updates_vm != self.updates_vm.isChecked():
self.qvm_collection.check_updates_vm = self.updates_vm.isChecked()

def reject(self):
self.done(0)
Expand Down

0 comments on commit 733f00d

Please sign in to comment.