From 9fbbef4d171bc310c5263c994356bd08cd0acfc4 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Fri, 24 Apr 2015 06:42:12 +0200 Subject: [PATCH] disable sorting of addresses --- gui/qt/main_window.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py index c14ab8ed..92356380 100644 --- a/gui/qt/main_window.py +++ b/gui/qt/main_window.py @@ -1308,6 +1308,7 @@ class ElectrumWindow(QMainWindow): def create_addresses_tab(self): l = MyTreeWidget(self, self.create_receive_menu, [ _('Address'), _('Label'), _('Balance'), _('Tx')], [370, None, 130]) l.setSelectionMode(QAbstractItemView.ExtendedSelection) + l.setSortingEnabled(False) self.address_list = l return self.create_list_tab(l)