welcome_dialog: remove weird window close event

This commit is contained in:
Megamouse 2023-06-26 01:09:46 +02:00
parent d34b3190f7
commit 6228dff809

View File

@ -49,21 +49,18 @@ welcome_dialog::welcome_dialog(std::shared_ptr<gui_settings> gui_settings, bool
)"
).arg(gui::utils::get_link_style()));
connect(ui->i_have_read, &QCheckBox::clicked, [this, is_manual_show](bool checked)
if (!is_manual_show)
{
if (is_manual_show)
connect(ui->i_have_read, &QCheckBox::clicked, [this](bool checked)
{
return;
}
ui->okay->setEnabled(checked);
setWindowFlag(Qt::WindowCloseButtonHint, checked);
});
connect(ui->do_not_show, &QCheckBox::clicked, [this](bool checked)
{
m_gui_settings->SetValue(gui::ib_show_welcome, QVariant(!checked));
});
}
connect(ui->okay, &QPushButton::clicked, this, &QDialog::accept);