From b2d4a2a81f417c463ba47bdf314e338e5600d485 Mon Sep 17 00:00:00 2001 From: Sander van Grieken Date: Tue, 7 Feb 2023 00:13:03 +0100 Subject: [PATCH] qml: fix show mempool depth when unconfirmed --- electrum/gui/qml/components/TxDetails.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/electrum/gui/qml/components/TxDetails.qml b/electrum/gui/qml/components/TxDetails.qml index d76e6a000..fd09bd724 100644 --- a/electrum/gui/qml/components/TxDetails.qml +++ b/electrum/gui/qml/components/TxDetails.qml @@ -143,12 +143,12 @@ Pane { Label { text: qsTr('Mempool depth') color: Material.accentColor - visible: !txdetails.isMined && txdetails.canBroadcast + visible: !txdetails.isMined && !txdetails.canBroadcast } Label { text: txdetails.mempoolDepth - visible: !txdetails.isMined && txdetails.canBroadcast + visible: !txdetails.isMined && !txdetails.canBroadcast } Label {