From 7fb95216cf18033f90d205c688cdbd73696fb8dc Mon Sep 17 00:00:00 2001 From: Dmugetsu Date: Fri, 21 Feb 2025 20:57:41 -0600 Subject: [PATCH] fixing flags --- src/qt_gui/main_window.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/qt_gui/main_window.cpp b/src/qt_gui/main_window.cpp index 726192193..eebae9883 100644 --- a/src/qt_gui/main_window.cpp +++ b/src/qt_gui/main_window.cpp @@ -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