electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 9fbbef4d171bc310c5263c994356bd08cd0acfc4
parent eff977081db0c908c021c09281af7138ce114a74
Author: ThomasV <thomasv@gitorious>
Date:   Fri, 24 Apr 2015 06:42:12 +0200

disable sorting of addresses

Diffstat:
Mgui/qt/main_window.py | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git 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)