From: Chris Michael Date: Thu, 12 Feb 2015 17:09:47 +0000 (-0500) Subject: ecore-drm: Fix bad German formatting ;) X-Git-Tag: v1.14.0-alpha1~493 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5c68b659bbed1a936a92a4e552fe4b219da60ce6;p=platform%2Fupstream%2Fefl.git ecore-drm: Fix bad German formatting ;) Summary: No functional changes, just formatting Signed-off-by: Chris Michael --- 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;