1
0
Fork 0

GuiProcessEvents only processes events on the GUI thread

This commit is contained in:
Duncan Ogilvie 2025-07-22 15:04:41 +02:00
parent 64108f0b10
commit 4f406b274e
1 changed files with 2 additions and 1 deletions

View File

@ -997,7 +997,8 @@ void* Bridge::processMessage(GUIMSG type, void* param1, void* param2)
break; break;
case GUI_PROCESS_EVENTS: case GUI_PROCESS_EVENTS:
QCoreApplication::processEvents(); if(GetCurrentThreadId() == mMainThreadId)
QCoreApplication::processEvents();
break; break;
case GUI_TYPE_ADDNODE: case GUI_TYPE_ADDNODE: