qt: Revert 7fa91e8312 partially

The AskPassphraseDialog modal dialog must be synchronous here as
expected in the WalletModel::requestUnlock() function.

Fixed an introduced regression.
This commit is contained in:
Hennadii Stepanov
2022-02-08 17:26:10 +02:00
parent 89c277a6fc
commit 5d7666b151

View File

@@ -242,9 +242,11 @@ void WalletView::unlockWallet()
{ {
// Unlock wallet when requested by wallet model // Unlock wallet when requested by wallet model
if (walletModel->getEncryptionStatus() == WalletModel::Locked) { if (walletModel->getEncryptionStatus() == WalletModel::Locked) {
auto dlg = new AskPassphraseDialog(AskPassphraseDialog::Unlock, this); AskPassphraseDialog dlg(AskPassphraseDialog::Unlock, this);
dlg->setModel(walletModel); dlg.setModel(walletModel);
GUIUtil::ShowModalDialogAndDeleteOnClose(dlg); // A modal dialog must be synchronous here as expected
// in the WalletModel::requestUnlock() function.
dlg.exec();
} }
} }