From 343d45270668b49379aa1afbcbe61808c4fcc904 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Thu, 23 Apr 2015 12:50:22 +0200 Subject: [PATCH] sort contacts. fixes #920 --- gui/qt/main_window.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py index fcf258c02..a8c3f5e17 100644 --- a/gui/qt/main_window.py +++ b/gui/qt/main_window.py @@ -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)