main: show splash screen after passphrase entry

This commit is contained in:
selsta 2020-02-27 18:39:35 +01:00
parent 44dfb80633
commit 09ff85af44
No known key found for this signature in database
GPG Key ID: 2EA0A99A8B07AE5E
1 changed files with 2 additions and 2 deletions

View File

@ -564,11 +564,11 @@ ApplicationWindow {
console.log(">>> wallet passphrase needed: ")
passwordDialog.onAcceptedPassphraseCallback = function() {
walletManager.onPassphraseEntered(passwordDialog.password);
this.onWalletOpening();
appWindow.onWalletOpening();
}
passwordDialog.onRejectedPassphraseCallback = function() {
walletManager.onPassphraseEntered("", true);
this.onWalletOpening();
appWindow.onWalletOpening();
}
passwordDialog.openPassphraseDialog()
}