mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-10 08:38:20 +00:00
[client] x11: prevent skew from enter/leave/focus and fullscreen events
This commit is contained in:
parent
9f6ad864ed
commit
3e08e7aafa
@ -741,6 +741,8 @@ static int x11EventThread(void * unused)
|
||||
|
||||
if (xe.xproperty.atom == x11atoms._NET_WM_STATE)
|
||||
{
|
||||
atomic_store(&x11.lastWMEvent, microtime());
|
||||
|
||||
Atom type;
|
||||
int fmt;
|
||||
unsigned long num, bytes;
|
||||
@ -766,6 +768,8 @@ static int x11EventThread(void * unused)
|
||||
|
||||
if (xe.xproperty.atom == x11atoms._NET_FRAME_EXTENTS)
|
||||
{
|
||||
atomic_store(&x11.lastWMEvent, microtime());
|
||||
|
||||
Atom type;
|
||||
int fmt;
|
||||
unsigned long num, bytes;
|
||||
@ -804,6 +808,7 @@ static void x11XInputEvent(XGenericEventCookie *cookie)
|
||||
{
|
||||
case XI_FocusIn:
|
||||
{
|
||||
atomic_store(&x11.lastWMEvent, microtime());
|
||||
if (x11.focused)
|
||||
return;
|
||||
|
||||
@ -821,6 +826,7 @@ static void x11XInputEvent(XGenericEventCookie *cookie)
|
||||
|
||||
case XI_FocusOut:
|
||||
{
|
||||
atomic_store(&x11.lastWMEvent, microtime());
|
||||
if (!x11.focused)
|
||||
return;
|
||||
|
||||
@ -838,6 +844,7 @@ static void x11XInputEvent(XGenericEventCookie *cookie)
|
||||
|
||||
case XI_Enter:
|
||||
{
|
||||
atomic_store(&x11.lastWMEvent, microtime());
|
||||
XIEnterEvent *xie = cookie->data;
|
||||
if (x11.entered || xie->event != x11.window)
|
||||
return;
|
||||
@ -850,6 +857,7 @@ static void x11XInputEvent(XGenericEventCookie *cookie)
|
||||
|
||||
case XI_Leave:
|
||||
{
|
||||
atomic_store(&x11.lastWMEvent, microtime());
|
||||
XILeaveEvent *xie = cookie->data;
|
||||
if (!x11.entered || xie->event != x11.window ||
|
||||
button_state != 0 || app_isCaptureMode())
|
||||
|
Loading…
Reference in New Issue
Block a user