diff options
author | Luke Dashjr <luke-jr+git@utopios.org> | 2017-02-17 08:18:32 +0000 |
---|---|---|
committer | Jonas Schnelli <dev@jonasschnelli.ch> | 2017-02-17 11:00:46 +0100 |
commit | 3e4d7bfcb7d9f6d88b6120f44bb6cb7fa93d7adf (patch) | |
tree | b3f51f202b5572577aa9f1fa172b67c6fc6e788a /src/qt/sendcoinsdialog.cpp | |
parent | c5adf8f267b2b4b633af2738c8f21005d4382496 (diff) |
Qt/Send: Figure a decent warning colour from theme
Diffstat (limited to 'src/qt/sendcoinsdialog.cpp')
-rw-r--r-- | src/qt/sendcoinsdialog.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/qt/sendcoinsdialog.cpp b/src/qt/sendcoinsdialog.cpp index 6180107b0e..d39f92dda3 100644 --- a/src/qt/sendcoinsdialog.cpp +++ b/src/qt/sendcoinsdialog.cpp @@ -656,6 +656,9 @@ void SendCoinsDialog::updateSmartFeeLabel() ui->labelSmartFee2->show(); // (Smart fee not initialized yet. This usually takes a few blocks...) ui->labelFeeEstimation->setText(""); ui->fallbackFeeWarningLabel->setVisible(true); + int lightness = ui->fallbackFeeWarningLabel->palette().color(QPalette::WindowText).lightness(); + QColor warning_colour(255 - (lightness / 5), 176 - (lightness / 3), 48 - (lightness / 14)); + ui->fallbackFeeWarningLabel->setStyleSheet("QLabel { color: " + warning_colour.name() + "; }"); } else { |