From 2fe5dbf5a92a2959320324822b559188214e25ed Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Mon, 31 Jul 2023 19:23:12 -0400 Subject: [PATCH] Actually emit finishedUpdating signal --- launcher/src/assetupdater.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/launcher/src/assetupdater.cpp b/launcher/src/assetupdater.cpp index 0206a5d..fcd1fbf 100644 --- a/launcher/src/assetupdater.cpp +++ b/launcher/src/assetupdater.cpp @@ -41,7 +41,7 @@ void AssetUpdater::update() { // non-dalamud users can bypass this process since it's not needed if (!m_profile.dalamudEnabled()) { - finishedUpdating(); + Q_EMIT finishedUpdating(); return; } @@ -173,7 +173,7 @@ void AssetUpdater::checkIfFinished() if (needsRuntimeInstall || needsDalamudInstall) { beginInstall(); } else { - finishedUpdating(); + Q_EMIT finishedUpdating(); } } }