mirror of
https://github.com/brl/mutter.git
synced 2024-11-22 16:10:41 -05:00
ui: Fix the check for the XInput opcode
When converting is_input_event to be the opposite, I forgot to make this change.
This commit is contained in:
parent
c10c8649f5
commit
909a46087f
@ -81,7 +81,7 @@ is_interesting_input_event (XEvent *event)
|
|||||||
XIEvent *input_event;
|
XIEvent *input_event;
|
||||||
|
|
||||||
if (event->type != GenericEvent ||
|
if (event->type != GenericEvent ||
|
||||||
event->xcookie.extension == display->xinput_opcode)
|
event->xcookie.extension != display->xinput_opcode)
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
||||||
input_event = (XIEvent *) event->xcookie.data;
|
input_event = (XIEvent *) event->xcookie.data;
|
||||||
|
Loading…
Reference in New Issue
Block a user