sort contacts. fixes #920

This commit is contained in:
ThomasV 2015-04-23 12:50:22 +02:00
parent 782522fb71
commit 343d452706
1 changed files with 2 additions and 2 deletions

View File

@ -1590,8 +1590,8 @@ class ElectrumWindow(QMainWindow):
item = l.currentItem()
current_key = item.data(0, Qt.UserRole).toString() if item else None
l.clear()
for key, v in self.contacts.items():
_type, value = v
for key in sorted(self.contacts.keys()):
_type, value = self.contacts[key]
item = QTreeWidgetItem([key, value, _type])
item.setData(0, Qt.UserRole, key)
l.addTopLevelItem(item)