From adece0b73e97168e9338695c8dd7c4e0dab25b86 Mon Sep 17 00:00:00 2001 From: Megamouse Date: Fri, 13 Aug 2021 20:16:19 +0200 Subject: [PATCH] Qt: fix updater menu button It kept auto accepting --- rpcs3/rpcs3qt/main_window.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/rpcs3qt/main_window.cpp b/rpcs3/rpcs3qt/main_window.cpp index c6e785e507..2d83fd57cd 100644 --- a/rpcs3/rpcs3qt/main_window.cpp +++ b/rpcs3/rpcs3qt/main_window.cpp @@ -2247,7 +2247,7 @@ void main_window::CreateConnects() QMessageBox::warning(this, tr("Auto-updater"), tr("The auto-updater currently isn't available for your os.")); return; #endif - m_updater.check_for_updates(false, false, this); + m_updater.check_for_updates(false, false, false, this); }); connect(ui->aboutAct, &QAction::triggered, this, [this]