From bcae8ed1ad8da6433d367f9922260ec63ebfd8d1 Mon Sep 17 00:00:00 2001 From: Luke Childs Date: Sun, 17 Nov 2019 15:28:17 +0700 Subject: [PATCH] Show outgoing Lightning paymenst with red description --- 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 e5f1eb93b..5ab279e71 100644 --- a/electrum/gui/qt/history_list.py +++ b/electrum/gui/qt/history_list.py @@ -201,7 +201,7 @@ class HistoryModel(QAbstractItemModel, Logger): # and self.parent.wallet.invoices.paid.get(tx_hash): # return QVariant(read_QIcon("seal")) elif col in (HistoryColumns.DESCRIPTION, HistoryColumns.AMOUNT) \ - and role == Qt.ForegroundRole and not is_lightning and tx_item['value'].value < 0: + and role == Qt.ForegroundRole and tx_item['value'].value < 0: red_brush = QBrush(QColor("#BC1E1E")) return QVariant(red_brush) elif col == HistoryColumns.FIAT_VALUE and role == Qt.ForegroundRole \