Correct sorting of VMs in Qube Manager

Fixed two situations in which there was no sub-sorting alphabetically.

fixes QubesOS/qubes-issues#1022
This commit is contained in:
Marta Marczykowska-Górecka 2018-07-11 16:13:26 +02:00
parent 9d62468ff2
commit d4ecd23d0a
No known key found for this signature in database
GPG Key ID: 9A752C30B26FD04B

View File

@ -353,6 +353,8 @@ class VmInternalItem(QtGui.QTableWidgetItem):
return True
elif other.vm.qid == 0:
return False
elif self.internal == other.internal:
return self.vm.name < other.vm.name
return super(VmInternalItem, self).__lt__(other)
except exc.QubesPropertyAccessError:
return False
@ -516,6 +518,8 @@ class VmIPItem(QtGui.QTableWidgetItem):
return True
elif other.vm.qid == 0:
return False
elif self.ip == other.ip:
return self.vm.name < other.vm.name
return super(VmIPItem, self).__lt__(other)
except exc.QubesPropertyAccessError:
return False