Browse Source

qml: txdetails feebump/cancel below mempool position

master
Sander van Grieken 3 years ago
parent
commit
9b0ff481b2
  1. 22
      electrum/gui/qml/components/TxDetails.qml

22
electrum/gui/qml/components/TxDetails.qml

@ -120,6 +120,17 @@ Pane {
text: txdetails.status
}
Label {
text: qsTr('Mempool depth')
color: Material.accentColor
visible: txdetails.mempoolDepth
}
Label {
text: txdetails.mempoolDepth
visible: txdetails.mempoolDepth
}
TextHighlightPane {
Layout.fillWidth: true
Layout.columnSpan: 2
@ -175,17 +186,6 @@ Pane {
}
Label {
text: qsTr('Mempool depth')
color: Material.accentColor
visible: txdetails.mempoolDepth
}
Label {
text: txdetails.mempoolDepth
visible: txdetails.mempoolDepth
}
Label {
visible: txdetails.isMined
text: qsTr('Date')

Loading…
Cancel
Save