commit b1c33ecc256c58c7ecee28e2f4507dd374727d62
parent 867190e0828a139fa4529cde60d033a9389df42c
Author: Drew DeVault <sir@cmpwn.com>
Date: Sat, 12 May 2018 09:40:34 -0400
Merge pull request #1964 from emersion/wlroots-970
Send pointer discrete axis values
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sway/input/cursor.c b/sway/input/cursor.c
@@ -240,7 +240,7 @@ static void handle_cursor_axis(struct wl_listener *listener, void *data) {
struct sway_cursor *cursor = wl_container_of(listener, cursor, axis);
struct wlr_event_pointer_axis *event = data;
wlr_seat_pointer_notify_axis(cursor->seat->wlr_seat, event->time_msec,
- event->orientation, event->delta);
+ event->orientation, event->delta, event->delta_discrete, event->source);
}
static void handle_touch_down(struct wl_listener *listener, void *data) {