diff options
author | Chris Michael <cp.michael@samsung.com> | 2015-02-12 12:09:47 -0500 |
---|---|---|
committer | Chris Michael <cp.michael@samsung.com> | 2015-02-12 12:09:47 -0500 |
commit | 5c68b659bbed1a936a92a4e552fe4b219da60ce6 (patch) | |
tree | 82518eb33d981ef8707430cd3c65d80d639cefd1 | |
parent | 52c48cfc214a9fb36db90748cfdf8095fd23db30 (diff) |
ecore-drm: Fix bad German formatting ;)
Summary: No functional changes, just formatting
Signed-off-by: Chris Michael <cp.michael@samsung.com>
-rw-r--r-- | src/lib/ecore_drm/ecore_drm_evdev.c | 12 |
1 files 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 42b61f4b40..483b5d3f6e 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 | |||
523 | 523 | ||
524 | #ifdef LIBINPUT_HIGHER_08 | 524 | #ifdef LIBINPUT_HIGHER_08 |
525 | axis = LIBINPUT_POINTER_AXIS_SCROLL_VERTICAL; | 525 | axis = LIBINPUT_POINTER_AXIS_SCROLL_VERTICAL; |
526 | if (libinput_event_pointer_has_axis(event, axis)) { | 526 | if (libinput_event_pointer_has_axis(event, axis)) |
527 | ev->z = libinput_event_pointer_get_axis_value(event, axis); | 527 | ev->z = libinput_event_pointer_get_axis_value(event, axis); |
528 | } | ||
529 | 528 | ||
530 | axis = LIBINPUT_POINTER_AXIS_SCROLL_HORIZONTAL; | 529 | axis = LIBINPUT_POINTER_AXIS_SCROLL_HORIZONTAL; |
531 | if (libinput_event_pointer_has_axis(event, axis)) { | 530 | if (libinput_event_pointer_has_axis(event, axis)) |
532 | ev->direction = 1; | 531 | { |
533 | ev->z = libinput_event_pointer_get_axis_value(event, axis); | 532 | ev->direction = 1; |
534 | } | 533 | ev->z = libinput_event_pointer_get_axis_value(event, axis); |
534 | } | ||
535 | #else | 535 | #else |
536 | axis = libinput_event_pointer_get_axis(event); | 536 | axis = libinput_event_pointer_get_axis(event); |
537 | if (axis == LIBINPUT_POINTER_AXIS_SCROLL_HORIZONTAL) ev->direction = 1; | 537 | if (axis == LIBINPUT_POINTER_AXIS_SCROLL_HORIZONTAL) ev->direction = 1; |