0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-02-08 10:31:50 -05:00

qt, refactor: Keep HelpMessageDialog in the main event loop

This commit is contained in:
Hennadii Stepanov 2021-06-07 18:41:58 +03:00
parent c8bae37a7a
commit 332dea2852
No known key found for this signature in database
GPG key ID: 410108112E7EA81F

View file

@ -848,8 +848,8 @@ void BitcoinGUI::aboutClicked()
if(!clientModel)
return;
HelpMessageDialog dlg(this, true);
dlg.exec();
auto dlg = new HelpMessageDialog(this, /* about */ true);
GUIUtil::ShowModalDialogAndDeleteOnClose(dlg);
}
void BitcoinGUI::showDebugWindow()