From 93a5bbb4a4ff94137eb10447de4242c9013f3b69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Tue, 22 Jun 2021 20:19:07 +0200 Subject: [PATCH] bar: wayland: require seat version 5, to get discrete axis events --- bar/wayland.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bar/wayland.c b/bar/wayland.c index 1124ab2..7fb9d29 100644 --- a/bar/wayland.c +++ b/bar/wayland.c @@ -574,7 +574,7 @@ handle_global(void *data, struct wl_registry *registry, } else if (strcmp(interface, wl_seat_interface.name) == 0) { - const uint32_t required = 3; + const uint32_t required = 5; if (!verify_iface_version(interface, version, required)) return;