mirror of
https://github.com/brl/mutter.git
synced 2025-07-06 02:49:52 +00: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:
@ -81,7 +81,7 @@ is_interesting_input_event (XEvent *event)
|
||||
XIEvent *input_event;
|
||||
|
||||
if (event->type != GenericEvent ||
|
||||
event->xcookie.extension == display->xinput_opcode)
|
||||
event->xcookie.extension != display->xinput_opcode)
|
||||
return FALSE;
|
||||
|
||||
input_event = (XIEvent *) event->xcookie.data;
|
||||
|
Reference in New Issue
Block a user