diff options
author | Simon Ser <contact@emersion.fr> | 2024-02-28 10:31:03 +0100 |
---|---|---|
committer | Simon Zeni <simon@bl4ckb0ne.ca> | 2024-02-28 16:39:18 +0000 |
commit | ec5263e6b7b069da6d32fe302771f006f6b5ac22 (patch) | |
tree | 8dc309d9f73a5f36623850701e7b51736eb8f655 /include/backend | |
parent | 812451cd8fd858cb2aa0630532266f229d934bf2 (diff) |
pointer: drop enum wlr_axis_relative_direction
Instead, use enum wl_pointer_axis_relative_direction from the
Wayland protocol.
Diffstat (limited to 'include/backend')
-rw-r--r-- | include/backend/wayland.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/backend/wayland.h b/include/backend/wayland.h index 273aa4f7..a0bffcd4 100644 --- a/include/backend/wayland.h +++ b/include/backend/wayland.h @@ -109,7 +109,7 @@ struct wlr_wl_pointer { enum wl_pointer_axis_source axis_source; int32_t axis_discrete; uint32_t fingers; // trackpad gesture - enum wlr_axis_relative_direction axis_relative_direction; + enum wl_pointer_axis_relative_direction axis_relative_direction; struct wl_listener output_destroy; |