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/WizardCreateWallet2.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/WizardCreateWallet2.qml')
| -rw-r--r-- | wizard/WizardCreateWallet2.qml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/wizard/WizardCreateWallet2.qml b/wizard/WizardCreateWallet2.qml index 74fb1df0..72a8f71a 100644 --- a/wizard/WizardCreateWallet2.qml +++ b/wizard/WizardCreateWallet2.qml @@ -38,6 +38,8 @@ Rectangle { color: "transparent" property alias pageHeight: pageRoot.height property string viewName: "wizardCreateWallet2" + property alias pwField: passwordFields.password + property alias pwConfirmField: passwordFields.passwordConfirm ColumnLayout { id: pageRoot @@ -64,9 +66,6 @@ Rectangle { progress: 1 btnNext.enabled: passwordFields.calcStrengthAndVerify(); onPrevClicked: { - passwordFields.password = ""; - passwordFields.passwordConfirm = ""; - if(wizardController.walletOptionsIsRecoveringFromDevice){ wizardStateView.state = "wizardCreateDevice1"; } else { |
