mirror of
https://github.com/overte-org/overte.git
synced 2025-04-17 08:56:36 +02:00
Save clip to asset - removing last fix
This commit is contained in:
parent
22287cb022
commit
ebbed7c525
1 changed files with 2 additions and 5 deletions
|
@ -185,13 +185,10 @@ bool RecordingScriptingInterface::saveRecordingToAsset(QScriptValue getClipAtpUr
|
|||
return false;
|
||||
}
|
||||
|
||||
|
||||
if (QThread::currentThread() != thread()) {
|
||||
bool result{ false };
|
||||
QMetaObject::invokeMethod(this, "saveRecordingToAsset", Qt::BlockingQueuedConnection,
|
||||
Q_ARG(QScriptValue, getClipAtpUrl),
|
||||
Q_RETURN_ARG(bool, result));
|
||||
return result;
|
||||
Q_ARG(QScriptValue, getClipAtpUrl));
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!_lastClip) {
|
||||
|
|
Loading…
Reference in a new issue