tqt history list: tweak sort order of items - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 23ec426b4f419c3004d043cf67b7d89f3f2f7651 DIR parent 811169da4b9a31388cc1d9e8e2cac738f14eded9 HTML Author: SomberNight <somber.night@protonmail.com> Date: Thu, 13 Jun 2019 01:03:56 +0200 qt history list: tweak sort order of items Diffstat: M electrum/gui/qt/history_list.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/electrum/gui/qt/history_list.py b/electrum/gui/qt/history_list.py t@@ -149,7 +149,7 @@ class HistoryModel(QAbstractItemModel, Logger): HistoryColumns.STATUS_ICON: # height breaks ties for unverified txns # txpos breaks ties for verified same block txns - (status, conf, -height, -txpos), + (conf, -status, -height, -txpos), HistoryColumns.STATUS_TEXT: status_str, HistoryColumns.DESCRIPTION: tx_item['label'], HistoryColumns.COIN_VALUE: tx_item['value'].value,