diff options
| author | selsta <selsta@sent.at> | 2021-12-11 19:20:40 +0100 |
|---|---|---|
| committer | selsta <selsta@sent.at> | 2021-12-26 02:15:07 +0100 |
| commit | 2566f445b2f9e9161ad996f6d18a2917cf27a6c9 (patch) | |
| tree | 5c5aef33ac72b7116bc0f1e0ed33954fb0d3deeb /wizard/WizardCreateWallet1.qml | |
| parent | bddb9b0050ee086da5c7ee7fdb3627e0dff9f179 (diff) | |
| download | monzero-gui-2566f445b2f9e9161ad996f6d18a2917cf27a6c9.tar.gz monzero-gui-2566f445b2f9e9161ad996f6d18a2917cf27a6c9.tar.xz monzero-gui-2566f445b2f9e9161ad996f6d18a2917cf27a6c9.zip | |
wizard: clear password field after wallet creation
Diffstat (limited to 'wizard/WizardCreateWallet1.qml')
| -rw-r--r-- | wizard/WizardCreateWallet1.qml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/wizard/WizardCreateWallet1.qml b/wizard/WizardCreateWallet1.qml index c1ecf026..088df200 100644 --- a/wizard/WizardCreateWallet1.qml +++ b/wizard/WizardCreateWallet1.qml @@ -194,6 +194,8 @@ Rectangle { btnNext.enabled: walletInput.verify(); btnPrev.text: qsTr("Back to menu") + translationManager.emptyString onPrevClicked: { + wizardController.wizardStateView.wizardCreateWallet2View.pwField = ""; + wizardController.wizardStateView.wizardCreateWallet2View.pwConfirmField = ""; wizardStateView.state = "wizardHome"; } onNextClicked: { |
