Browse Source

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.
donoban 6 years ago
parent
commit
34bcabd79a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      qubesmanager/table_widgets.py

+ 1 - 1
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'