From 34bcabd79aef68e7c08716a6b7fa970a51f2730c Mon Sep 17 00:00:00 2001 From: donoban Date: Tue, 12 Jun 2018 11:42:07 +0200 Subject: [PATCH] Show updates pending while running domain Maybe it is not useful for templates but I think it is better for StandaloneVMs since you will not notice pending updates until shutdown them with the other version. --- qubesmanager/table_widgets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qubesmanager/table_widgets.py b/qubesmanager/table_widgets.py index 31489ba..bdacd7e 100644 --- a/qubesmanager/table_widgets.py +++ b/qubesmanager/table_widgets.py @@ -420,7 +420,7 @@ class VmUpdateInfoWidget(QtGui.QWidget): outdated_state = "outdated" break - elif self.vm.klass in {'TemplateVM', 'StandaloneVM'} and \ + if self.vm.klass in {'TemplateVM', 'StandaloneVM'} and \ self.vm.features.get('updates-available', False): outdated_state = 'update'