mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 12:49:34 +02:00
Shutdown interface when test script finishes.
This commit is contained in:
parent
3a5425122b
commit
3b566332c6
1 changed files with 2 additions and 2 deletions
|
@ -456,7 +456,7 @@ void ScriptEngines::reloadAllScripts() {
|
||||||
}
|
}
|
||||||
|
|
||||||
ScriptEnginePointer ScriptEngines::loadScript(const QUrl& scriptFilename, bool isUserLoaded, bool loadScriptFromEditor,
|
ScriptEnginePointer ScriptEngines::loadScript(const QUrl& scriptFilename, bool isUserLoaded, bool loadScriptFromEditor,
|
||||||
bool activateMainWindow, bool reload, bool exitWhenFinished) {
|
bool activateMainWindow, bool reload, bool exitWhenFinished) {
|
||||||
if (thread() != QThread::currentThread()) {
|
if (thread() != QThread::currentThread()) {
|
||||||
ScriptEnginePointer result { nullptr };
|
ScriptEnginePointer result { nullptr };
|
||||||
BLOCKING_INVOKE_METHOD(this, "loadScript", Q_RETURN_ARG(ScriptEnginePointer, result),
|
BLOCKING_INVOKE_METHOD(this, "loadScript", Q_RETURN_ARG(ScriptEnginePointer, result),
|
||||||
|
@ -496,7 +496,7 @@ ScriptEnginePointer ScriptEngines::loadScript(const QUrl& scriptFilename, bool i
|
||||||
connect(scriptEngine.data(), &ScriptEngine::scriptLoaded, this, &ScriptEngines::onScriptEngineLoaded);
|
connect(scriptEngine.data(), &ScriptEngine::scriptLoaded, this, &ScriptEngines::onScriptEngineLoaded);
|
||||||
connect(scriptEngine.data(), &ScriptEngine::errorLoadingScript, this, &ScriptEngines::onScriptEngineError);
|
connect(scriptEngine.data(), &ScriptEngine::errorLoadingScript, this, &ScriptEngines::onScriptEngineError);
|
||||||
|
|
||||||
// Shutdown interface when script finishes, if requested
|
// Shutdown Interface when script finishes, if requested
|
||||||
if (exitWhenFinished) {
|
if (exitWhenFinished) {
|
||||||
connect(scriptEngine.data(), &ScriptEngine::finished, this, &ScriptEngines::exitWhenFinished);
|
connect(scriptEngine.data(), &ScriptEngine::finished, this, &ScriptEngines::exitWhenFinished);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue