mirror of
https://github.com/overte-org/overte.git
synced 2025-04-05 15:37:38 +02:00
Fixed blocking call
This commit is contained in:
parent
9e26146a08
commit
d9c5821e50
1 changed files with 3 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue