From 94b1df4a081d5fd219c18491cb17b368e3dc1f68 Mon Sep 17 00:00:00 2001 From: Sander van Grieken Date: Mon, 13 Nov 2023 11:35:30 +0100 Subject: [PATCH] qml: small UI fix, wording. --- electrum/gui/qml/components/OpenWalletDialog.qml | 1 + electrum/gui/qml/components/WalletMainView.qml | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) 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() }