1
0

qml: mempool histogram color bar: flip sign in feerate label

I think this is more intuitive as a "greater than" relation sign
than to use a signal that the label is for the leftmost point in the coloured bar.
As in, "feerates not displayed towards that direction are even higher than this value".
This commit is contained in:
SomberNight
2023-03-31 11:50:26 +00:00
parent b8aa87ded8
commit f7e7b4c9db

View File

@@ -128,7 +128,7 @@ 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
}