[client] x11: fix failure to process the correct focus events

This commit is contained in:
Geoffrey McRae 2021-01-20 05:41:33 +11:00
parent f883c630f6
commit 5789a7efc0

View File

@ -335,7 +335,7 @@ static bool x11EventFilter(SDL_Event * event)
return true;
XIFocusOutEvent *xie = cookie->data;
if (xie->mode != NotifyNormal)
if (xie->mode != NotifyNormal && xie->mode != XINotifyWhileGrabbed)
return true;
app_updateCursorPos(xie->event_x, xie->event_y);
@ -350,6 +350,9 @@ static bool x11EventFilter(SDL_Event * event)
return true;
XIFocusOutEvent *xie = cookie->data;
if (xie->mode != NotifyNormal && xie->mode != XINotifyWhileGrabbed)
return true;
app_updateCursorPos(xie->event_x, xie->event_y);
app_handleFocusEvent(false);
x11.focused = false;