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;