mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2026-05-08 12:28:10 +02:00
tools: explicitly ignore tablet event codes in the event-gui
For now anyway, silences the compiler warnings. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
parent
8302b0b7e3
commit
ef34fee2a3
1 changed files with 5 additions and 0 deletions
|
|
@ -375,6 +375,11 @@ handle_event_libinput(GIOChannel *source, GIOCondition condition, gpointer data)
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
case LIBINPUT_EVENT_TABLET_AXIS:
|
||||||
|
case LIBINPUT_EVENT_TABLET_TOOL_UPDATE:
|
||||||
|
case LIBINPUT_EVENT_TABLET_PROXIMITY_OUT:
|
||||||
|
case LIBINPUT_EVENT_TABLET_BUTTON:
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
libinput_event_destroy(ev);
|
libinput_event_destroy(ev);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue