Browse Source

qml: fix show mempool depth when unconfirmed

master
Sander van Grieken 3 years ago
parent
commit
b2d4a2a81f
  1. 4
      electrum/gui/qml/components/TxDetails.qml

4
electrum/gui/qml/components/TxDetails.qml

@ -143,12 +143,12 @@ Pane {
Label { Label {
text: qsTr('Mempool depth') text: qsTr('Mempool depth')
color: Material.accentColor color: Material.accentColor
visible: !txdetails.isMined && txdetails.canBroadcast visible: !txdetails.isMined && !txdetails.canBroadcast
} }
Label { Label {
text: txdetails.mempoolDepth text: txdetails.mempoolDepth
visible: !txdetails.isMined && txdetails.canBroadcast visible: !txdetails.isMined && !txdetails.canBroadcast
} }
Label { Label {

Loading…
Cancel
Save