diff --git a/electrum/gui/qml/components/OpenWalletDialog.qml b/electrum/gui/qml/components/OpenWalletDialog.qml index f248c61c0..59319bcff 100644 --- a/electrum/gui/qml/components/OpenWalletDialog.qml +++ b/electrum/gui/qml/components/OpenWalletDialog.qml @@ -60,6 +60,7 @@ ElDialog { onTextChanged: { unlockButton.enabled = true _unlockClicked = false + _invalidPassword = false } onAccepted: { unlock() diff --git a/electrum/gui/qml/components/WalletMainView.qml b/electrum/gui/qml/components/WalletMainView.qml index 78fa867b6..c991b7619 100644 --- a/electrum/gui/qml/components/WalletMainView.qml +++ b/electrum/gui/qml/components/WalletMainView.qml @@ -94,7 +94,9 @@ Item { text_help: helptext, text_warn: data[2] ? '' - : qsTr('Warning: Some data (prev txs / "full utxos") was left out of the QR code as it would not fit. This might cause issues if signing offline. As a workaround, try exporting the tx as file or text instead.') + : [qsTr('Warning: Some data (prev txs / "full utxos") was left out of the QR code as it would not fit.'), + qsTr('This might cause issues if signing offline.'), + qsTr('As a workaround, copy to clipboard or use the Share option instead.')].join(' ') }) dialog.open() }