ecore-drm: Fix bad German formatting ;)
authorChris Michael <cp.michael@samsung.com>
Thu, 12 Feb 2015 17:09:47 +0000 (12:09 -0500)
committerChris Michael <cp.michael@samsung.com>
Thu, 12 Feb 2015 17:09:47 +0000 (12:09 -0500)
Summary: No functional changes, just formatting

Signed-off-by: Chris Michael <cp.michael@samsung.com>
src/lib/ecore_drm/ecore_drm_evdev.c

index 42b61f4..483b5d3 100644 (file)
@@ -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;