Explorar el Código

Fix missing template updates-available

donoban hace 6 años
padre
commit
a77cc5172d
Se han modificado 1 ficheros con 3 adiciones y 0 borrados
  1. 3 0
      qubesmanager/table_widgets.py

+ 3 - 0
qubesmanager/table_widgets.py

@@ -388,6 +388,9 @@ class VmUpdateInfoWidget(QtGui.QWidget):
                         outdated_state = "outdated"
                         break
 
+        elif self.vm.klass == 'TemplateVM' and self.vm.features.get('updates-available', False):
+            outdated_state = 'update'
+
         self.update_status_widget(outdated_state)
 
     def update_status_widget(self, state):