From f87dceda8580f0187ade5e1051a89556f60335f5 Mon Sep 17 00:00:00 2001 From: Chris Michael Date: Mon, 22 Feb 2016 12:13:06 -0500 Subject: [PATCH] ecore-drm: Don't reset event modifiers on touch motion When we are sending an event for touch motion, we should be specifing the modifers in the event structure (not setting them to zero). @fix Signed-off-by: Chris Michael --- src/lib/ecore_drm/ecore_drm_evdev.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/lib/ecore_drm/ecore_drm_evdev.c b/src/lib/ecore_drm/ecore_drm_evdev.c index cf418f3442..1461c52368 100644 --- a/src/lib/ecore_drm/ecore_drm_evdev.c +++ b/src/lib/ecore_drm/ecore_drm_evdev.c @@ -783,7 +783,6 @@ _device_handle_touch_motion_send(Ecore_Drm_Evdev *edev, struct libinput_event_to _device_modifiers_update(edev); ev->modifiers = edev->xkb.modifiers; - ev->modifiers = 0; ev->x = edev->seat->ptr.ix; ev->y = edev->seat->ptr.iy;