From 027821d7aabe44c3ebcfcba3e6cbd66ae069d626 Mon Sep 17 00:00:00 2001 From: Johann Bauer Date: Sun, 22 Oct 2017 20:05:52 +0200 Subject: [PATCH] Follow-up #2983 --- gui/qt/transaction_dialog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/qt/transaction_dialog.py b/gui/qt/transaction_dialog.py index 0d28ec720..722201873 100644 --- a/gui/qt/transaction_dialog.py +++ b/gui/qt/transaction_dialog.py @@ -227,7 +227,7 @@ class TxDialog(QDialog, MessageBoxMixin): vbox.addWidget(QLabel(_("Inputs") + ' (%d)'%len(self.tx.inputs()))) ext = QTextCharFormat() rec = QTextCharFormat() - rec.setBackground(QBrush(QColor("lightgreen"))) + rec.setBackground(QBrush(ColorScheme.GREEN.as_color(background=True))) rec.setToolTip(_("Wallet receive address")) chg = QTextCharFormat() chg.setBackground(QBrush(QColor("yellow")))