diff --git a/modules/highgui/src/window_QT.cpp b/modules/highgui/src/window_QT.cpp index 50939340e..bdf696e33 100644 --- a/modules/highgui/src/window_QT.cpp +++ b/modules/highgui/src/window_QT.cpp @@ -740,14 +740,14 @@ double cvGetOpenGlProp_QT(const char* name) GuiReceiver::GuiReceiver() : bTimeOut(false), nb_windows(0) { doesExternalQAppExist = (QApplication::instance() != 0); - if ( doesExternalQAppExist ) { - moveToThread(QApplication::instance()->thread()); - } icvInitSystem(¶meterSystemC, parameterSystemV); timer = new QTimer(this); QObject::connect(timer, SIGNAL(timeout()), this, SLOT(timeOut())); timer->setSingleShot(true); + if ( doesExternalQAppExist ) { + moveToThread(QApplication::instance()->thread()); + } }