From 9f4cf242d9f51922c1bb364d9b11a1ed83f518fb Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Wed, 28 Feb 2024 10:15:13 +0100 Subject: pointer: drop enum wlr_axis_source Instead, use enum wl_pointer_axis_source from the Wayland protocol. --- backend/x11/input_device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'backend/x11/input_device.c') diff --git a/backend/x11/input_device.c b/backend/x11/input_device.c index 02d4210f..8526ae9b 100644 --- a/backend/x11/input_device.c +++ b/backend/x11/input_device.c @@ -45,7 +45,7 @@ static void send_axis_event(struct wlr_x11_output *output, int32_t delta, struct wlr_pointer_axis_event ev = { .pointer = &output->pointer, .time_msec = time, - .source = WLR_AXIS_SOURCE_WHEEL, + .source = WL_POINTER_AXIS_SOURCE_WHEEL, .orientation = WLR_AXIS_ORIENTATION_VERTICAL, // Most mice use a 15 degree angle per scroll click .delta = delta * 15, -- cgit v1.2.3