mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-01-08 21:33:57 +00:00
[client] x11: fix issue with grab when clicking on the unfocused window
Fixes #856
This commit is contained in:
parent
abd6502c9d
commit
88a95aeab0
1 changed files with 3 additions and 1 deletions
|
@ -993,8 +993,10 @@ static void x11XInputEvent(XGenericEventCookie *cookie)
|
|||
{
|
||||
atomic_store(&x11.lastWMEvent, microtime());
|
||||
XILeaveEvent *xie = cookie->data;
|
||||
|
||||
if (!x11.entered || xie->event != x11.window ||
|
||||
button_state != 0 || app_isCaptureMode())
|
||||
button_state != 0 || app_isCaptureMode() ||
|
||||
xie->mode == NotifyGrab)
|
||||
return;
|
||||
|
||||
app_updateCursorPos(xie->event_x, xie->event_y);
|
||||
|
|
Loading…
Reference in a new issue