diff options
author | Chris Michael <cp.michael@samsung.com> | 2017-04-19 14:13:29 -0400 |
---|---|---|
committer | Chris Michael <cp.michael@samsung.com> | 2017-04-19 14:13:29 -0400 |
commit | 8eb1e925ae1abf6c58b26003435f07662bd381d9 (patch) | |
tree | 9a63e3e478f6864a228307c1e96190e4aa87fd0a /src/lib/elput | |
parent | c8ca766a49de425d42e93a30d1c432e9ee9f90cd (diff) |
elput: Remove specific case for pointer wheel tilt
Since efl-jenkins does not have libinput >= 1.7.0, this commit broke
the jenkins build due to missing
LIBINPUT_POINTER_AXIS_SOURCE_WHEEL_TILT value. We should be able to
get by with letting 'default' case handle it....
@fix
Signed-off-by: Chris Michael <cp.michael@samsung.com>
Diffstat (limited to 'src/lib/elput')
-rw-r--r-- | src/lib/elput/elput_evdev.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/lib/elput/elput_evdev.c b/src/lib/elput/elput_evdev.c index 8686bdeef7..9a2dc5c443 100644 --- a/src/lib/elput/elput_evdev.c +++ b/src/lib/elput/elput_evdev.c | |||
@@ -908,7 +908,6 @@ _pointer_axis_value(struct libinput_event_pointer *event, enum libinput_pointer_ | |||
908 | case LIBINPUT_POINTER_AXIS_SOURCE_CONTINUOUS: | 908 | case LIBINPUT_POINTER_AXIS_SOURCE_CONTINUOUS: |
909 | val = libinput_event_pointer_get_axis_value(event, axis); | 909 | val = libinput_event_pointer_get_axis_value(event, axis); |
910 | break; | 910 | break; |
911 | case LIBINPUT_POINTER_AXIS_SOURCE_WHEEL_TILT: | ||
912 | default: | 911 | default: |
913 | break; | 912 | break; |
914 | } | 913 | } |