Browse Source

Merge pull request #3090 from bauerj/dark2

Follow-up #2983
seed_v14
ThomasV 7 years ago
committed by GitHub
parent
commit
fe82a7905c
  1. 2
      gui/qt/transaction_dialog.py

2
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")))

Loading…
Cancel
Save