diff options
| author | Ilya Kitaev <mbg033@gmail.com> | 2016-02-29 17:39:39 +0300 |
|---|---|---|
| committer | Ilya Kitaev <mbg033@gmail.com> | 2016-02-29 17:39:39 +0300 |
| commit | 7d9306ca1a661da015c59a0a991e028aeec0ee44 (patch) | |
| tree | b536aade228025ea2458a2c7a7fb8ec6f8d36163 /wizard/WizardPassword.qml | |
| parent | 625041df1823f2ce98b53fa054bab47876717c15 (diff) | |
| download | monzero-gui-7d9306ca1a661da015c59a0a991e028aeec0ee44.tar.gz monzero-gui-7d9306ca1a661da015c59a0a991e028aeec0ee44.tar.xz monzero-gui-7d9306ca1a661da015c59a0a991e028aeec0ee44.zip | |
Qt wrapper for libwallet - in-progress
Diffstat (limited to 'wizard/WizardPassword.qml')
| -rw-r--r-- | wizard/WizardPassword.qml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/wizard/WizardPassword.qml b/wizard/WizardPassword.qml index d3d033aa..1bcc6213 100644 --- a/wizard/WizardPassword.qml +++ b/wizard/WizardPassword.qml @@ -43,6 +43,10 @@ Item { onOpacityChanged: visible = opacity !== 0 + function saveSettings(settingsObject) { + settingsObject.wallet.setPassword(passwordItem.password) + } + function handlePassword() { // allow to forward step only if passwords match wizard.nextButton.enabled = passwordItem.password === retypePasswordItem.password @@ -54,8 +58,6 @@ Item { - - Row { id: dotsRow anchors.top: parent.top |
