mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Avoid WM_QUIT loop by posting it directly to thread message queue.
Based on patch by Chad Austin (bug 480220). Fixes a rare infinite loop in FFXIV Launcher when changing layout (which restarts it). Signed-off-by: Gabriel Ivăncescu <gabrielopcode@gmail.com>
This commit is contained in:
parent
04ef8cdae6
commit
e3eff67fed
@ -357,8 +357,9 @@ nsAppShell::ProcessNextNativeEvent(bool mayWait)
|
|||||||
|
|
||||||
if (gotMessage) {
|
if (gotMessage) {
|
||||||
if (msg.message == WM_QUIT) {
|
if (msg.message == WM_QUIT) {
|
||||||
::PostQuitMessage(msg.wParam);
|
|
||||||
Exit();
|
Exit();
|
||||||
|
::PostThreadMessage(::GetCurrentThreadId(), WM_QUIT, msg.wParam, msg.lParam);
|
||||||
|
return false;
|
||||||
} else {
|
} else {
|
||||||
// If we had UI activity we would be processing it now so we know we
|
// If we had UI activity we would be processing it now so we know we
|
||||||
// have either kUIActivity or kActivityNoUIAVail.
|
// have either kUIActivity or kActivityNoUIAVail.
|
||||||
|
Loading…
Reference in New Issue
Block a user