# HG changeset patch # User Daniel J Sebald # Date 1429936619 18000 # Node ID 46fb763e5f3a7f35604bde37508208477c8ec244 # Parent 4c6d70a35192e1abf567a248135a47097ad18e39 Move octave_qt_link thread affinity back to the GUI thread (bug #44912) * octave-qt-link.cc (octave_qt_link::octave_qt_link): Leave qt-link object in GUI thread by removing moveToThread() from constructor. diff -r 4c6d70a35192 -r 46fb763e5f3a libgui/src/octave-qt-link.cc --- a/libgui/src/octave-qt-link.cc Sun Apr 26 21:14:53 2015 -0700 +++ b/libgui/src/octave-qt-link.cc Fri Apr 24 23:36:59 2015 -0500 @@ -59,10 +59,6 @@ command_interpreter->moveToThread (main_thread); main_thread->start (); - - // Move this link object affinity to the same thread as the - // interpreter to ensure signals/slots to the GUI are queued. - moveToThread (main_thread); } octave_qt_link::~octave_qt_link (void) { }