Merge pull request #388 from emersion/fix-wayland-pointer-axis

Fix pointer axis delta in Wayland backend
This commit is contained in:
Drew DeVault 2017-11-05 07:29:02 -05:00 committed by GitHub
commit 74a45ee776
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ static void pointer_handle_axis(void *data, struct wl_pointer *wl_pointer,
struct wlr_event_pointer_axis wlr_event; struct wlr_event_pointer_axis wlr_event;
wlr_event.device = dev; wlr_event.device = dev;
wlr_event.delta = value; wlr_event.delta = wl_fixed_to_double(value);
wlr_event.orientation = axis; wlr_event.orientation = axis;
wlr_event.time_msec = time; wlr_event.time_msec = time;
wlr_event.source = wlr_wl_pointer->axis_source; wlr_event.source = wlr_wl_pointer->axis_source;