electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit fe82a7905c404d2d607b4d2bbbc44b2d36b4f89d
parent 4c88159efbbd3d9939f517673091e2546581d5b7
Author: ThomasV <thomasv@electrum.org>
Date:   Sun, 22 Oct 2017 21:05:34 +0200

Merge pull request #3090 from bauerj/dark2

Follow-up #2983
Diffstat:
Mgui/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 @@ -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")))