Index: sources/gui/guicontroller.cpp =================================================================== diff -u -reea63d68fc0fb269f8dec64d99f488bcad117220 -r93d7ff58cd6fd2fea5d00587ee712a637fc941bf --- sources/gui/guicontroller.cpp (.../guicontroller.cpp) (revision eea63d68fc0fb269f8dec64d99f488bcad117220) +++ sources/gui/guicontroller.cpp (.../guicontroller.cpp) (revision 93d7ff58cd6fd2fea5d00587ee712a637fc941bf) @@ -100,7 +100,7 @@ _thread = &vThread; _thread->setObjectName(QString("%1_Thread").arg(metaObject()->className())); connect(qApp, SIGNAL(aboutToQuit()), this, SLOT(quit())); - if (!_thread->isRunning()) _thread->start(); // In case more than one object using the same thread + _thread->start(); moveToThread(_thread); } // coco end