diff options
| author | Riccardo Spagni <ric@spagni.net> | 2016-10-11 10:28:31 +0200 |
|---|---|---|
| committer | Riccardo Spagni <ric@spagni.net> | 2016-10-11 10:28:31 +0200 |
| commit | d9b3f4a4fd1f2082b9867a1f22ecb0fe01f04280 (patch) | |
| tree | d7f21728940451b222ae40589c4f1f6d033e5696 /wizard | |
| parent | 6bbad6c8de9582fd4cdaa4ac65b75795d64cbac9 (diff) | |
| parent | b8c07de8197c69f95681f27be4c86d5b5e5bdefa (diff) | |
| download | monzero-gui-d9b3f4a4fd1f2082b9867a1f22ecb0fe01f04280.tar.gz monzero-gui-d9b3f4a4fd1f2082b9867a1f22ecb0fe01f04280.tar.xz monzero-gui-d9b3f4a4fd1f2082b9867a1f22ecb0fe01f04280.zip | |
Merge pull request #46
b8c07de wizard: store password in appwindow session (Jacob Brydolf)
e5b9a1b settings page: strict password check (Jacob Brydolf)
010cce4 settings page: Empty password field on seed view (Jacob Brydolf)
Diffstat (limited to 'wizard')
| -rw-r--r-- | wizard/WizardMain.qml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/wizard/WizardMain.qml b/wizard/WizardMain.qml index 097fb58a..43200304 100644 --- a/wizard/WizardMain.qml +++ b/wizard/WizardMain.qml @@ -124,6 +124,9 @@ Rectangle { // protecting wallet with password settings.wallet.setPassword(settings.wallet_password); + // Store password in session to be able to use password protected functions (e.g show seed) + appWindow.password = settings.wallet_password + // saving wallet_filename; settings['wallet_filename'] = new_wallet_filename; |
