mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2026-01-11 16:50:26 +01: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;
|
||||
}
|
||||
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);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue