diff options
| author | Luke Dashjr <[email protected]> | 2017-06-05 22:57:35 +0000 |
|---|---|---|
| committer | Luke Dashjr <[email protected]> | 2017-06-05 22:57:35 +0000 |
| commit | aca4b6dbcb1c2b7f0c3808fd8ad3eb7dce158555 (patch) | |
| tree | f9ee7790c9de23ea3ea9c6ef88356db0a5ef1bef /src/qt/sendcoinsdialog.cpp | |
| parent | Merge #10234, #10143 (fixes only), and #9853 via branch 'disconnect_ban_fixes... (diff) | |
| parent | Qt/Send: Give fallback fee a reasonable indent (diff) | |
| download | discoin-aca4b6dbcb1c2b7f0c3808fd8ad3eb7dce158555.tar.xz discoin-aca4b6dbcb1c2b7f0c3808fd8ad3eb7dce158555.zip | |
Merge #9481 via remote-tracking branch 'jonas/2017/01/fee_warning' into 0.14.2_fixes
Diffstat (limited to 'src/qt/sendcoinsdialog.cpp')
| -rw-r--r-- | src/qt/sendcoinsdialog.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/qt/sendcoinsdialog.cpp b/src/qt/sendcoinsdialog.cpp index 1c0ed663c..65ca00755 100644 --- a/src/qt/sendcoinsdialog.cpp +++ b/src/qt/sendcoinsdialog.cpp @@ -23,6 +23,7 @@ #include "txmempool.h" #include "wallet/wallet.h" +#include <QFontMetrics> #include <QMessageBox> #include <QScrollBar> #include <QSettings> @@ -656,6 +657,11 @@ void SendCoinsDialog::updateSmartFeeLabel() std::max(CWallet::fallbackFee.GetFeePerK(), CWallet::GetRequiredFee(1000))) + "/kB"); 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() + "; }"); + ui->fallbackFeeWarningLabel->setIndent(QFontMetrics(ui->fallbackFeeWarningLabel->font()).width("x")); } else { @@ -663,6 +669,7 @@ void SendCoinsDialog::updateSmartFeeLabel() std::max(feeRate.GetFeePerK(), CWallet::GetRequiredFee(1000))) + "/kB"); ui->labelSmartFee2->hide(); ui->labelFeeEstimation->setText(tr("Estimated to begin confirmation within %n block(s).", "", estimateFoundAtBlocks)); + ui->fallbackFeeWarningLabel->setVisible(false); } updateFeeMinimizedLabel(); |