GuiProcessEvents only processes events on the GUI thread
This commit is contained in:
parent
64108f0b10
commit
4f406b274e
|
@ -997,7 +997,8 @@ void* Bridge::processMessage(GUIMSG type, void* param1, void* param2)
|
|||
break;
|
||||
|
||||
case GUI_PROCESS_EVENTS:
|
||||
QCoreApplication::processEvents();
|
||||
if(GetCurrentThreadId() == mMainThreadId)
|
||||
QCoreApplication::processEvents();
|
||||
break;
|
||||
|
||||
case GUI_TYPE_ADDNODE:
|
||||
|
|
Loading…
Reference in New Issue