From 23ec426b4f419c3004d043cf67b7d89f3f2f7651 Mon Sep 17 00:00:00 2001 From: SomberNight Date: Thu, 13 Jun 2019 01:03:56 +0200 Subject: [PATCH] qt history list: tweak sort order of items --- electrum/gui/qt/history_list.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electrum/gui/qt/history_list.py b/electrum/gui/qt/history_list.py index 333487a1a..5edee2a54 100644 --- a/electrum/gui/qt/history_list.py +++ b/electrum/gui/qt/history_list.py @@ -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,