aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiikka Heikkinen <miikka.heikkinen@qt.io>2020-03-31 13:23:14 +0300
committerMiikka Heikkinen <miikka.heikkinen@qt.io>2020-03-31 11:43:11 +0000
commitee81b5d895ad603232afc407c218ab5eb004679a (patch)
tree41bf3136bf4e7af538200c2234ae9b06445705ef
parent0880cfb75cbb054350c1dc4abd2057587e95bef2 (diff)
QmlDesigner: Exit puppet asynchronously in case of failed icon render
The application event loop is not yet active at setup time, so just calling qGuiApp->quit() directly doesn't actually exit the application. Change-Id: Iccae4dd59d92b593205c2057b189774f827ffcda Fixes: QDS-1875 Reviewed-by: Mahmoud Badri <mahmoud.badri@qt.io>
-rw-r--r--share/qtcreator/qml/qmlpuppet/qml2puppet/iconrenderer/iconrenderer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/share/qtcreator/qml/qmlpuppet/qml2puppet/iconrenderer/iconrenderer.cpp b/share/qtcreator/qml/qmlpuppet/qml2puppet/iconrenderer/iconrenderer.cpp
index 034a809b16..48830caee6 100644
--- a/share/qtcreator/qml/qmlpuppet/qml2puppet/iconrenderer/iconrenderer.cpp
+++ b/share/qtcreator/qml/qmlpuppet/qml2puppet/iconrenderer/iconrenderer.cpp
@@ -150,10 +150,10 @@ void IconRenderer::setupRender()
QTimer::singleShot(1000, qGuiApp, &QGuiApplication::quit);
});
} else {
- qGuiApp->quit();
+ QTimer::singleShot(0, qGuiApp, &QGuiApplication::quit);
}
} else {
- qGuiApp->quit();
+ QTimer::singleShot(0, qGuiApp, &QGuiApplication::quit);
}
}