Browse Source

Show all non halted vm's as running

donoban 3 years ago
parent
commit
6276373fff
1 changed files with 1 additions and 1 deletions
  1. 1 1
      qubesmanager/qube_manager.py

+ 1 - 1
qubesmanager/qube_manager.py

@@ -668,7 +668,7 @@ class QubesProxyModel(QSortFilterProxyModel):
         vm = self.sourceModel().data(index, Qt.UserRole)
 
         if self.window.show_running.isChecked() and \
-                vm.state['power'] == 'Running':
+                vm.state['power'] != 'Halted':
             return super().filterAcceptsRow(sourceRow, sourceParent)
         if self.window.show_halted.isChecked() and \
                 vm.state['power'] == 'Halted':