From 0cff058f38f2121475ca4d298e7f8c3b7938df30 Mon Sep 17 00:00:00 2001 From: Consolatis <40171-Consolatis@users.noreply.gitlab.freedesktop.org> Date: Thu, 8 Sep 2022 05:22:03 +0200 Subject: [PATCH] wlr_virtual_pointer_v1: fix discrete scrolling It seems it was forgotten to adjust when implementing !3461 High-resolution scroll wheel support --- types/wlr_virtual_pointer_v1.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/types/wlr_virtual_pointer_v1.c b/types/wlr_virtual_pointer_v1.c index f4dd60c1..b452ff56 100644 --- a/types/wlr_virtual_pointer_v1.c +++ b/types/wlr_virtual_pointer_v1.c @@ -180,7 +180,8 @@ static void virtual_pointer_axis_discrete(struct wl_client *client, pointer->axis_event[pointer->axis].time_msec = time; pointer->axis_event[pointer->axis].orientation = axis; pointer->axis_event[pointer->axis].delta = wl_fixed_to_double(value); - pointer->axis_event[pointer->axis].delta_discrete = discrete; + pointer->axis_event[pointer->axis].delta_discrete = discrete * + WLR_POINTER_AXIS_DISCRETE_STEP; } static void virtual_pointer_destroy_resource(struct wl_resource *resource) {