fixing flags

This commit is contained in:
Dmugetsu 2025-02-21 20:57:41 -06:00
parent f952dcf035
commit 7fb95216cf

View File

@ -231,7 +231,7 @@ void MainWindow::CheckUpdateMain(bool checkSave) {
return;
}
}
auto checkUpdate = new CheckUpdate(this, true, this);
auto checkUpdate = new CheckUpdate(this, false, this);
checkUpdate->exec();
}
#endif
@ -340,7 +340,7 @@ void MainWindow::CreateConnects() {
#ifdef ENABLE_UPDATER
connect(ui->updaterAct, &QAction::triggered, this, [this]() {
auto checkUpdate = new CheckUpdate(this, false, this);
auto checkUpdate = new CheckUpdate(this, true, this);
checkUpdate->exec();
});
#endif