mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 19:29:47 +02:00
Merge pull request #6460 from EdgarPironti/asset_branch
Save clip to asset - removing last fix
This commit is contained in:
commit
eecb5b91b2
1 changed files with 2 additions and 5 deletions
|
@ -185,13 +185,10 @@ bool RecordingScriptingInterface::saveRecordingToAsset(QScriptValue getClipAtpUr
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
if (QThread::currentThread() != thread()) {
|
if (QThread::currentThread() != thread()) {
|
||||||
bool result{ false };
|
|
||||||
QMetaObject::invokeMethod(this, "saveRecordingToAsset", Qt::BlockingQueuedConnection,
|
QMetaObject::invokeMethod(this, "saveRecordingToAsset", Qt::BlockingQueuedConnection,
|
||||||
Q_ARG(QScriptValue, getClipAtpUrl),
|
Q_ARG(QScriptValue, getClipAtpUrl));
|
||||||
Q_RETURN_ARG(bool, result));
|
return false;
|
||||||
return result;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!_lastClip) {
|
if (!_lastClip) {
|
||||||
|
|
Loading…
Reference in a new issue