Actually use red color for the outdated tag

This commit is contained in:
Joanna Rutkowska 2011-04-07 13:11:58 +02:00
parent d88a902db9
commit 567117ea59

View File

@ -158,7 +158,7 @@ class VmInfoWidget (QWidget):
outdated = vm.is_outdated()
if outdated != self.previous_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:
self.label_name.setText(vm.name)
self.previous_outdated = outdated