From c1230cf270317ab86f3857da7812ee8abf222024 Mon Sep 17 00:00:00 2001 From: The Phez Date: Fri, 25 Mar 2016 10:01:48 -0400 Subject: [PATCH] Label colour - History Window Set colour of label for outgoing transactions to match the colour of the value field (red) --- gui/qt/history_widget.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gui/qt/history_widget.py b/gui/qt/history_widget.py index e747afc6..f1bf6796 100644 --- a/gui/qt/history_widget.py +++ b/gui/qt/history_widget.py @@ -92,6 +92,7 @@ class HistoryWidget(MyTreeWidget): if i!=2: item.setFont(i, QFont(MONOSPACE_FONT)) if value < 0: + item.setForeground(3, QBrush(QColor("#BC1E1E"))) item.setForeground(4, QBrush(QColor("#BC1E1E"))) if tx_hash: item.setData(0, Qt.UserRole, tx_hash)