aboutsummaryrefslogtreecommitdiff
path: root/sway/input/cursor.c
diff options
context:
space:
mode:
authorBrian Ashworth <RedSoxFan@users.noreply.github.com>2018-05-12 12:43:34 -0400
committerGitHub <noreply@github.com>2018-05-12 12:43:34 -0400
commitec60e24f75f778b378206366057df4efae4b8630 (patch)
treea2b6ce2f6f28b294ae6cbb8cbf49b107138215f5 /sway/input/cursor.c
parente3625d8f337d61c5d2ba1266679b9053168cd0ae (diff)
parentb1c33ecc256c58c7ecee28e2f4507dd374727d62 (diff)
Merge branch 'master' into edge-borders
Diffstat (limited to 'sway/input/cursor.c')
-rw-r--r--sway/input/cursor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/input/cursor.c b/sway/input/cursor.c
index c0c6e827..51ce86e1 100644
--- 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) {