diff options
author | Jonas Schnelli <dev@jonasschnelli.ch> | 2015-11-25 13:21:53 +0100 |
---|---|---|
committer | Jonas Schnelli <dev@jonasschnelli.ch> | 2015-11-30 14:09:04 +0100 |
commit | 80462dda0a5ed1db22560380fef0f87df20253c1 (patch) | |
tree | ab719f6ba7c9761914a0da34fd80f5be74126309 /src | |
parent | ecc7c82361d98268d86b399dac76ca6d99bde889 (diff) |
[Qt] use ASYMP_UTF8 (≈) whenever we show a fee that is not absolute
Diffstat (limited to 'src')
-rw-r--r-- | src/qt/coincontroldialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/coincontroldialog.cpp b/src/qt/coincontroldialog.cpp index cbc41f3416..33344938df 100644 --- a/src/qt/coincontroldialog.cpp +++ b/src/qt/coincontroldialog.cpp @@ -619,7 +619,7 @@ void CoinControlDialog::updateLabels(WalletModel *model, QDialog* dialog) l6->setText(sPriorityLabel); // Priority l7->setText(fDust ? tr("yes") : tr("no")); // Dust l8->setText(BitcoinUnits::formatWithUnit(nDisplayUnit, nChange)); // Change - if (nPayFee > 0 && !(payTxFee.GetFeePerK() > 0 && fPayAtLeastCustomFee && nBytes < 1000)) + if (nPayFee > 0 && (coinControl->nMinimumTotalFee < nPayFee)) { l3->setText(ASYMP_UTF8 + l3->text()); l4->setText(ASYMP_UTF8 + l4->text()); |