Actually use red color for the outdated tag
This commit is contained in:
parent
d88a902db9
commit
567117ea59
@ -158,7 +158,7 @@ class VmInfoWidget (QWidget):
|
|||||||
outdated = vm.is_outdated()
|
outdated = vm.is_outdated()
|
||||||
if outdated != self.previous_outdated:
|
if outdated != self.previous_outdated:
|
||||||
if outdated:
|
if outdated:
|
||||||
self.label_name.setText(vm.name + "<small><font color=\"gray\"> (outdated)</font></small>")
|
self.label_name.setText(vm.name + "<small><font color=\"red\"> (outdated)</font></small>")
|
||||||
else:
|
else:
|
||||||
self.label_name.setText(vm.name)
|
self.label_name.setText(vm.name)
|
||||||
self.previous_outdated = outdated
|
self.previous_outdated = outdated
|
||||||
|
Loading…
Reference in New Issue
Block a user