From b0189d08284cf25f1e35bf937b143032541d1d6d Mon Sep 17 00:00:00 2001 From: firestarsdog <229254897+firestarsdog@users.noreply.github.com> Date: Mon, 15 Dec 2025 23:29:48 -0500 Subject: [PATCH] try this --- tools/nik/installer_standalone.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/nik/installer_standalone.cc b/tools/nik/installer_standalone.cc index 035113359..da8581bc6 100644 --- a/tools/nik/installer_standalone.cc +++ b/tools/nik/installer_standalone.cc @@ -293,7 +293,7 @@ void Installer::readProgress() { auto line = QString(proc.readAllStandardError()); int base = 0; - for (const QPair kv : stages) { + for (const QPair kv : stages) { if (line.startsWith(kv.first)) { auto perc = line.split(kv.first)[1].split("%")[0]; int p = base + int(perc.toFloat() / 100. * kv.second);