[Qt] use ASYMP_UTF8 (≈) whenever we show a fee that is not absolute
This commit is contained in:
parent
ecc7c82361
commit
80462dda0a
1 changed files with 1 additions and 1 deletions
|
@ -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());
|
||||
|
|
Loading…
Reference in a new issue