Browse Source

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".
master
SomberNight 3 years ago
parent
commit
f7e7b4c9db
No known key found for this signature in database
GPG Key ID: B33B5F232C6271E9
  1. 2
      electrum/gui/qml/components/NetworkOverview.qml

2
electrum/gui/qml/components/NetworkOverview.qml

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

Loading…
Cancel
Save