Browse Source

qml: fix newline in TxDetails

master
Sander van Grieken 2 years ago
parent
commit
e8852918a7
No known key found for this signature in database
GPG Key ID: 9BCF8209EA402EBA
  1. 6
      electrum/gui/qml/components/TxDetails.qml

6
electrum/gui/qml/components/TxDetails.qml

@ -68,11 +68,11 @@ Pane {
text: txdetails.isUnrelated
? qsTr('Transaction is unrelated to this wallet.')
: txdetails.inMempool
? qsTr('This transaction is still unconfirmed.') + '\n' +
? qsTr('This transaction is still unconfirmed.') +
(txdetails.canBump || txdetails.canCpfp || txdetails.canCancel
? txdetails.canCancel
? qsTr('You can bump its fee to speed up its confirmation, or cancel this transaction.')
: qsTr('You can bump its fee to speed up its confirmation.')
? '\n' + qsTr('You can bump its fee to speed up its confirmation, or cancel this transaction.')
: '\n' + qsTr('You can bump its fee to speed up its confirmation.')
: '')
: txdetails.lockDelay
? qsTr('This transaction is local to your wallet and locked for the next %1 blocks.').arg(txdetails.lockDelay)

Loading…
Cancel
Save