0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-03-06 14:19:59 -05:00

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
No known key found for this signature in database
GPG key ID: 410108112E7EA81F

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();
} }
} }