Browse Source

qml: arrows consistency.

replace with unicode arrows once we can assure these glyphs are included on device
master
Sander van Grieken 3 years ago
parent
commit
bcbcf18c4d
  1. 4
      electrum/gui/qml/components/NetworkOverview.qml

4
electrum/gui/qml/components/NetworkOverview.qml

@ -144,14 +144,14 @@ Pane {
RowLayout { RowLayout {
Layout.fillWidth: true Layout.fillWidth: true
Label { 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 font.pixelSize: constants.fontSizeXSmall
color: Material.accentColor color: Material.accentColor
} }
Label { Label {
Layout.fillWidth: true Layout.fillWidth: true
horizontalAlignment: Text.AlignRight 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 font.pixelSize: constants.fontSizeXSmall
color: Material.accentColor color: Material.accentColor
} }

Loading…
Cancel
Save