summaryrefslogtreecommitdiffstats
path: root/tools/qmlviewer
diff options
context:
space:
mode:
Diffstat (limited to 'tools/qmlviewer')
-rw-r--r--tools/qmlviewer/qfxtester.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/tools/qmlviewer/qfxtester.cpp b/tools/qmlviewer/qfxtester.cpp
index 8005b0e..0ccc9c0 100644
--- a/tools/qmlviewer/qfxtester.cpp
+++ b/tools/qmlviewer/qfxtester.cpp
@@ -118,12 +118,14 @@ void QFxTester::imagefailure()
void QFxTester::complete()
{
+ if (options & QmlViewer::ExitOnComplete)
+ QApplication::exit(hasFailed?-1:0);
+
if (hasCompleted)
return;
hasCompleted = true;
- if (options & QmlViewer::ExitOnComplete)
- QApplication::exit(hasFailed?-1:0);
- else if (options & QmlViewer::Play)
+
+ if (options & QmlViewer::Play)
qWarning("Script playback complete");
}