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>
This commit is contained in:
Chris Michael 2016-02-22 12:13:06 -05:00
parent 59d32121d6
commit f87dceda85
1 changed files with 0 additions and 1 deletions

View File

@ -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;