Skip to content

Commit 80462dd

Browse files
committed
[Qt] use ASYMP_UTF8 (≈) whenever we show a fee that is not absolute
1 parent ecc7c82 commit 80462dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/qt/coincontroldialog.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -619,7 +619,7 @@ void CoinControlDialog::updateLabels(WalletModel *model, QDialog* dialog)
619619
l6->setText(sPriorityLabel); // Priority
620620
l7->setText(fDust ? tr("yes") : tr("no")); // Dust
621621
l8->setText(BitcoinUnits::formatWithUnit(nDisplayUnit, nChange)); // Change
622-
if (nPayFee > 0 && !(payTxFee.GetFeePerK() > 0 && fPayAtLeastCustomFee && nBytes < 1000))
622+
if (nPayFee > 0 && (coinControl->nMinimumTotalFee < nPayFee))
623623
{
624624
l3->setText(ASYMP_UTF8 + l3->text());
625625
l4->setText(ASYMP_UTF8 + l4->text());

0 commit comments

Comments
 (0)