devilhorns pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=f87dceda8580f0187ade5e1051a89556f60335f5

commit f87dceda8580f0187ade5e1051a89556f60335f5
Author: Chris Michael <cpmich...@osg.samsung.com>
Date:   Mon Feb 22 12:13:06 2016 -0500

    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 <cpmich...@osg.samsung.com>
---
 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 cf418f3..1461c52 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;

-- 


Reply via email to