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>
This commit is contained in:
Chris Michael 2017-04-19 14:13:29 -04:00
parent c8ca766a49
commit 8eb1e925ae
1 changed files with 0 additions and 1 deletions

View File

@ -908,7 +908,6 @@ _pointer_axis_value(struct libinput_event_pointer *event, enum libinput_pointer_
case LIBINPUT_POINTER_AXIS_SOURCE_CONTINUOUS:
val = libinput_event_pointer_get_axis_value(event, axis);
break;
case LIBINPUT_POINTER_AXIS_SOURCE_WHEEL_TILT:
default:
break;
}