From bcbcf18c4d505eeecfb3652dbb123bc7fa3e2e86 Mon Sep 17 00:00:00 2001 From: Sander van Grieken Date: Thu, 6 Apr 2023 09:15:46 +0200 Subject: [PATCH] qml: arrows consistency. replace with unicode arrows once we can assure these glyphs are included on device --- electrum/gui/qml/components/NetworkOverview.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/electrum/gui/qml/components/NetworkOverview.qml b/electrum/gui/qml/components/NetworkOverview.qml index 416bb5efc..f1339dc1f 100644 --- a/electrum/gui/qml/components/NetworkOverview.qml +++ b/electrum/gui/qml/components/NetworkOverview.qml @@ -144,14 +144,14 @@ Pane { RowLayout { Layout.fillWidth: true Label { - text: '< ' + qsTr('%1 sat/vB').arg(Math.ceil(Network.feeHistogram.max_fee)) + text: '<-- ' + qsTr('%1 sat/vB').arg(Math.ceil(Network.feeHistogram.max_fee)) font.pixelSize: constants.fontSizeXSmall color: Material.accentColor } Label { Layout.fillWidth: true horizontalAlignment: Text.AlignRight - text: qsTr('%1 sat/vB').arg(Math.floor(Network.feeHistogram.min_fee)) + ' >' + text: qsTr('%1 sat/vB').arg(Math.floor(Network.feeHistogram.min_fee)) + ' -->' font.pixelSize: constants.fontSizeXSmall color: Material.accentColor }