diff options
author | emersion <contact@emersion.fr> | 2018-05-12 13:51:30 +0100 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2018-05-12 13:53:21 +0100 |
commit | db84379242cea0283d4031be90dd80a34dd5d2df (patch) | |
tree | db00d6d45676489085e7ebace68415be5c0ab50b /rootston | |
parent | 0b585795645f608093ae59199a71bf5be6790e3b (diff) |
Send axis source event
Diffstat (limited to 'rootston')
-rw-r--r-- | rootston/cursor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rootston/cursor.c b/rootston/cursor.c index 98ecef4f..55b145e2 100644 --- a/rootston/cursor.c +++ b/rootston/cursor.c @@ -313,7 +313,7 @@ void roots_cursor_handle_button(struct roots_cursor *cursor, void roots_cursor_handle_axis(struct roots_cursor *cursor, struct wlr_event_pointer_axis *event) { wlr_seat_pointer_notify_axis(cursor->seat->seat, event->time_msec, - event->orientation, event->delta, event->delta_discrete); + event->orientation, event->delta, event->delta_discrete, event->source); } void roots_cursor_handle_touch_down(struct roots_cursor *cursor, |