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:
Peter Hutterer 2014-06-25 14:45:08 +10:00
parent 8302b0b7e3
commit ef34fee2a3

View file

@ -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);