mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-10 08:38:20 +00:00
[client] x11: filter out grab/ungrab focus/leave events
This commit is contained in:
parent
8e604667f9
commit
555891face
@ -259,11 +259,17 @@ static bool x11EventFilter(SDL_Event * event)
|
||||
}
|
||||
|
||||
case FocusIn:
|
||||
if (xe.xfocus.mode != NotifyNormal)
|
||||
return true;
|
||||
|
||||
x11.focused = true;
|
||||
app_handleFocusEvent(true);
|
||||
return true;
|
||||
|
||||
case FocusOut:
|
||||
if (xe.xfocus.mode != NotifyNormal)
|
||||
return true;
|
||||
|
||||
x11.focused = false;
|
||||
app_handleFocusEvent(false);
|
||||
return true;
|
||||
|
Loading…
Reference in New Issue
Block a user