From f82336ce8c1b59265d6be6dbe62932d8addca27b Mon Sep 17 00:00:00 2001 From: rating89us <45968869+rating89us@users.noreply.github.com> Date: Tue, 29 Jun 2021 12:34:39 +0200 Subject: [PATCH] TxConfirmationDialog: fix displaying of "<" when using fontMonoRegular --- components/TxConfirmationDialog.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/TxConfirmationDialog.qml b/components/TxConfirmationDialog.qml index 4904b4e6..b35a3b30 100644 --- a/components/TxConfirmationDialog.qml +++ b/components/TxConfirmationDialog.qml @@ -141,7 +141,7 @@ Rectangle { function showFiatConversion(valueXMR) { const fiatFee = fiatApiConvertToFiat(valueXMR); - return "%1 %2".arg(fiatFee < 0.01 ? "<0.01" : "~" + fiatFee).arg(fiatApiCurrencySymbol()); + return "%1 %2".arg(fiatFee < 0.01 ? "<0.01" : "~" + fiatFee).arg(fiatApiCurrencySymbol()); } ColumnLayout {