devilhorns pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=5c68b659bbed1a936a92a4e552fe4b219da60ce6
commit 5c68b659bbed1a936a92a4e552fe4b219da60ce6 Author: Chris Michael <[email protected]> Date: Thu Feb 12 12:09:47 2015 -0500 ecore-drm: Fix bad German formatting ;) Summary: No functional changes, just formatting Signed-off-by: Chris Michael <[email protected]> --- src/lib/ecore_drm/ecore_drm_evdev.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/lib/ecore_drm/ecore_drm_evdev.c b/src/lib/ecore_drm/ecore_drm_evdev.c index 42b61f4..483b5d3 100644 --- a/src/lib/ecore_drm/ecore_drm_evdev.c +++ b/src/lib/ecore_drm/ecore_drm_evdev.c @@ -523,15 +523,15 @@ _device_handle_axis(struct libinput_device *device, struct libinput_event_pointe #ifdef LIBINPUT_HIGHER_08 axis = LIBINPUT_POINTER_AXIS_SCROLL_VERTICAL; - if (libinput_event_pointer_has_axis(event, axis)) { + if (libinput_event_pointer_has_axis(event, axis)) ev->z = libinput_event_pointer_get_axis_value(event, axis); - } axis = LIBINPUT_POINTER_AXIS_SCROLL_HORIZONTAL; - if (libinput_event_pointer_has_axis(event, axis)) { - ev->direction = 1; - ev->z = libinput_event_pointer_get_axis_value(event, axis); - } + if (libinput_event_pointer_has_axis(event, axis)) + { + ev->direction = 1; + ev->z = libinput_event_pointer_get_axis_value(event, axis); + } #else axis = libinput_event_pointer_get_axis(event); if (axis == LIBINPUT_POINTER_AXIS_SCROLL_HORIZONTAL) ev->direction = 1; --
