From c2e891bbf42bf8bc876ff5c68abbfeb7e2c1b10d Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Mon, 12 Jun 2017 05:48:32 -0400 Subject: [PATCH] update wl_drm for recent efl_input_device api changes @jpeg plz http://i1.kym-cdn.com/photos/images/original/000/312/563/05d.jpg --- src/modules/wl_drm/e_mod_main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/wl_drm/e_mod_main.c b/src/modules/wl_drm/e_mod_main.c index 9e082aabd..7f067c8f2 100644 --- a/src/modules/wl_drm/e_mod_main.c +++ b/src/modules/wl_drm/e_mod_main.c @@ -832,10 +832,10 @@ _drm_device_del(void *data EINA_UNUSED, const Efl_Event *event) { Eo *seat = event->info; - if (efl_input_device_type_get(event->info) == EFL_INPUT_DEVICE_CLASS_SEAT) return; + if (efl_input_device_type_get(event->info) == EFL_INPUT_DEVICE_TYPE_SEAT) return; seat = efl_input_device_seat_get(event->info); - if (seat != evas_default_device_get(e_comp->evas, EFL_INPUT_DEVICE_CLASS_SEAT)) return; + if (seat != evas_default_device_get(e_comp->evas, EFL_INPUT_DEVICE_TYPE_SEAT)) return; if (!efl_input_device_has_pointer_caps(event->info)) return; if (efl_input_device_has_pointer_caps(seat) == 1) ecore_evas_cursor_device_unset(e_comp->ee, event->info);