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,6 +997,7 @@ void* Bridge::processMessage(GUIMSG type, void* param1, void* param2)
break;
case GUI_PROCESS_EVENTS:
if(GetCurrentThreadId() == mMainThreadId)
QCoreApplication::processEvents();
break;