diff options
| author | rating89us <45968869+rating89us@users.noreply.github.com> | 2021-06-29 12:34:39 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-29 12:34:39 +0200 |
| commit | f82336ce8c1b59265d6be6dbe62932d8addca27b (patch) | |
| tree | 3931aa0d55d86be1277220ffa8e033efac29676b /components | |
| parent | b58bff39a04df3eefa016e283af6be73f58a9e18 (diff) | |
| download | monzero-gui-f82336ce8c1b59265d6be6dbe62932d8addca27b.tar.gz monzero-gui-f82336ce8c1b59265d6be6dbe62932d8addca27b.tar.xz monzero-gui-f82336ce8c1b59265d6be6dbe62932d8addca27b.zip | |
TxConfirmationDialog: fix displaying of "<" when using fontMonoRegular
Diffstat (limited to 'components')
| -rw-r--r-- | components/TxConfirmationDialog.qml | 2 |
1 files changed, 1 insertions, 1 deletions
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 { |
