qml: arrows consistency.

replace with unicode arrows once we can assure these glyphs are included on device
This commit is contained in:
Sander van Grieken
2023-04-06 09:15:46 +02:00
parent 2de9ca24a2
commit bcbcf18c4d

View File

@@ -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
}