From f7e7b4c9dbf5845db1fde3f08e50fbdfbf971fe8 Mon Sep 17 00:00:00 2001 From: SomberNight Date: Fri, 31 Mar 2023 11:50:26 +0000 Subject: [PATCH] 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". --- electrum/gui/qml/components/NetworkOverview.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electrum/gui/qml/components/NetworkOverview.qml b/electrum/gui/qml/components/NetworkOverview.qml index f58978d59..b6ffb4e0d 100644 --- a/electrum/gui/qml/components/NetworkOverview.qml +++ b/electrum/gui/qml/components/NetworkOverview.qml @@ -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 }