diff options
author | Chris Michael <cpmichael@osg.samsung.com> | 2016-02-22 12:13:06 -0500 |
---|---|---|
committer | Chris Michael <cpmichael@osg.samsung.com> | 2016-02-22 12:13:06 -0500 |
commit | f87dceda8580f0187ade5e1051a89556f60335f5 (patch) | |
tree | 10150502d87b573675641fd563278bc21d11d749 /src/lib | |
parent | 59d32121d672fe9d2dfb70c9fc6e49e9b197f4da (diff) |
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 <cpmichael@osg.samsung.com>
Diffstat (limited to '')
-rw-r--r-- | src/lib/ecore_drm/ecore_drm_evdev.c | 1 |
1 files changed, 0 insertions, 1 deletions
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 | |||
783 | 783 | ||
784 | _device_modifiers_update(edev); | 784 | _device_modifiers_update(edev); |
785 | ev->modifiers = edev->xkb.modifiers; | 785 | ev->modifiers = edev->xkb.modifiers; |
786 | ev->modifiers = 0; | ||
787 | 786 | ||
788 | ev->x = edev->seat->ptr.ix; | 787 | ev->x = edev->seat->ptr.ix; |
789 | ev->y = edev->seat->ptr.iy; | 788 | ev->y = edev->seat->ptr.iy; |