aboutsummaryrefslogtreecommitdiff
path: root/wizard/WizardController.qml
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2019-07-15 18:38:32 -0500
committerluigi1111 <luigi1111w@gmail.com>2019-07-15 18:38:32 -0500
commit3a9f0e11003168a13c3648d02c193402e67e95b2 (patch)
tree8d26e46e068633395358f5dc5fa9b1009efc452b /wizard/WizardController.qml
parent702b654f09785d7aacd0794293947a09d611c5ad (diff)
parent35a0f25b5702a13696aec4bc679d0c25b576ca17 (diff)
downloadmonzero-gui-3a9f0e11003168a13c3648d02c193402e67e95b2.tar.gz
monzero-gui-3a9f0e11003168a13c3648d02c193402e67e95b2.tar.xz
monzero-gui-3a9f0e11003168a13c3648d02c193402e67e95b2.zip
Merge pull request #2240
35a0f25 PasswordDialog: merge components and bug fixes (selsta)
Diffstat (limited to 'wizard/WizardController.qml')
-rw-r--r--wizard/WizardController.qml8
1 files changed, 4 insertions, 4 deletions
diff --git a/wizard/WizardController.qml b/wizard/WizardController.qml
index f4728ac2..c209faf0 100644
--- a/wizard/WizardController.qml
+++ b/wizard/WizardController.qml
@@ -498,15 +498,15 @@ Rectangle {
splash.close()
console.log(">>> wallet passphrase needed: ");
- passphraseDialog.onAcceptedCallback = function() {
- walletManager.onPassphraseEntered(passphraseDialog.passphrase);
+ passwordDialog.onAcceptedPassphraseCallback = function() {
+ walletManager.onPassphraseEntered(passwordDialog.password);
creatingWalletDeviceSplash();
}
- passphraseDialog.onRejectedCallback = function() {
+ passwordDialog.onRejectedPassphraseCallback = function() {
walletManager.onPassphraseEntered("", true);
creatingWalletDeviceSplash();
}
- passphraseDialog.open()
+ passwordDialog.openPassphraseDialog()
}
function onDeviceButtonRequest(code){