[Qt] use ASYMP_UTF8 (≈) whenever we show a fee that is not absolute

This commit is contained in:
Jonas Schnelli 2015-11-25 13:21:53 +01:00
parent ecc7c82361
commit 80462dda0a
No known key found for this signature in database
GPG Key ID: 29D4BCB6416F53EC
1 changed files with 1 additions and 1 deletions

View File

@ -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());