From 4d728156794b4fbfacc06e3f221d952711e5f915 Mon Sep 17 00:00:00 2001 From: Octol1ttle Date: Sat, 21 Feb 2026 00:00:27 +0500 Subject: [PATCH] change(PrismExternalUpdater): don't show progress dialog when autochecking Signed-off-by: Octol1ttle (cherry picked from commit 61c6eb0b4fe3041b4f1211df04322c47b0e460f4) --- launcher/updater/PrismExternalUpdater.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/launcher/updater/PrismExternalUpdater.cpp b/launcher/updater/PrismExternalUpdater.cpp index 69774dc04..9c8c1f10c 100644 --- a/launcher/updater/PrismExternalUpdater.cpp +++ b/launcher/updater/PrismExternalUpdater.cpp @@ -94,7 +94,9 @@ void PrismExternalUpdater::checkForUpdates(bool triggeredByUser) QProgressDialog progress(tr("Checking for updates..."), "", 0, 0, priv->parent); progress.setCancelButton(nullptr); progress.adjustSize(); - progress.show(); + if (triggeredByUser) { + progress.show(); + } QCoreApplication::processEvents(); QProcess proc;