summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Hollerbach <marcel@osg.samsung.com>2019-06-26 14:52:27 +0200
committerMarcel Hollerbach <marcel@osg.samsung.com>2019-06-26 14:52:27 +0200
commit3808d67ae18ef5440f76e361d1c3a727cb5f9a50 (patch)
treec90653c9560e6070047874f428b704b7d918c588
parente131745fb7b894af8a4fd20bcba0021cea6b838c (diff)
downloadenlightenment-devs/bu5hm4n/fix.tar.gz
wl_drm: convert to new APIdevs/bu5hm4n/fix
this API was changed in EFL.
-rw-r--r--src/modules/wl_drm/e_mod_main.c4
1 files 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 f2991b8a80..15bc30af1c 100644
--- a/src/modules/wl_drm/e_mod_main.c
+++ b/src/modules/wl_drm/e_mod_main.c
@@ -858,8 +858,8 @@ _drm_device_del(void *data EINA_UNUSED, const Efl_Event *event)
seat = efl_input_device_seat_get(event->info);
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)
+ if (!efl_input_device_is_pointer_type_get(event->info)) return;
+ if (efl_input_device_pointer_device_count_get(seat) == 1)
ecore_evas_cursor_device_unset(e_comp->ee, event->info);
}