Qt: Make welcome dialog accessible through F1 or Help menu

Enable window close button after "I have read the Quickstart" is checked.
This commit is contained in:
Eladash 2023-06-23 19:46:00 +03:00 committed by Ivan
parent a230340578
commit 83e22fa9f0
6 changed files with 50 additions and 6 deletions

View file

@ -135,7 +135,7 @@ bool gui_application::Init()
if (m_gui_settings->GetValue(gui::ib_show_welcome).toBool())
{
welcome_dialog* welcome = new welcome_dialog(m_gui_settings);
welcome_dialog* welcome = new welcome_dialog(m_gui_settings, false);
welcome->exec();
}