From d9c5821e504dfbf03db84e9b288b8707ddd7846e Mon Sep 17 00:00:00 2001 From: Karol Suprynowicz Date: Sat, 23 Nov 2024 12:59:12 +0100 Subject: [PATCH] Fixed blocking call --- libraries/script-engine/src/ScriptManager.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/libraries/script-engine/src/ScriptManager.cpp b/libraries/script-engine/src/ScriptManager.cpp index 28f544aa04..58fee1f06d 100644 --- a/libraries/script-engine/src/ScriptManager.cpp +++ b/libraries/script-engine/src/ScriptManager.cpp @@ -2498,11 +2498,10 @@ void ScriptManager::unloadAllEntityScripts(bool blockingCall) { #ifdef THREAD_DEBUGGING qCDebug(scriptengine) << "*** WARNING *** ScriptManager::unloadAllEntityScripts() called on wrong thread [" << QThread::currentThread() << "], invoking on correct thread [" << thread() << "]"; #endif - // Lambda is necessary there to keep shared_ptr counter above zero - QMetaObject::invokeMethod(this, [=, manager = shared_from_this()]{ - manager->unloadAllEntityScripts(blockingCall ? Qt::BlockingQueuedConnection : Qt::QueuedConnection); - }); + QMetaObject::invokeMethod(this, [=, manager = shared_from_this()] { + manager->unloadAllEntityScripts(blockingCall); + }, blockingCall ? Qt::BlockingQueuedConnection : Qt::QueuedConnection); return; } #ifdef THREAD_DEBUGGING