diff options
author | Markus Ongyerth <ongy@ongy.net> | 2018-05-17 09:59:37 +0200 |
---|---|---|
committer | Markus Ongyerth <ongy@ongy.net> | 2018-07-14 09:47:16 +0200 |
commit | b79d11395c9f8f26287e17e80066fd9034f05266 (patch) | |
tree | 52b8c617af7b10d1f33652ac9adaf056bdd12e22 /include | |
parent | 0c9a26828a764ec2648fa1f72178d5df4dd7b36b (diff) |
Hook up set_cursor in rootston
Diffstat (limited to 'include')
-rw-r--r-- | include/rootston/seat.h | 1 | ||||
-rw-r--r-- | include/wlr/types/wlr_tablet_v2.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/include/rootston/seat.h b/include/rootston/seat.h index 1a0b889a..258c8840 100644 --- a/include/rootston/seat.h +++ b/include/rootston/seat.h @@ -118,6 +118,7 @@ struct roots_tablet_tool_tool { struct roots_seat *seat; + struct wl_listener set_cursor; struct wl_listener tool_destroy; struct roots_tablet_tool *current_tablet; diff --git a/include/wlr/types/wlr_tablet_v2.h b/include/wlr/types/wlr_tablet_v2.h index 0be672cb..5de12ec8 100644 --- a/include/wlr/types/wlr_tablet_v2.h +++ b/include/wlr/types/wlr_tablet_v2.h @@ -81,6 +81,7 @@ struct wlr_tablet_v2_event_cursor { uint32_t serial; int32_t hotspot_x; int32_t hotspot_y; + struct wlr_seat_client *seat_client; }; struct wlr_tablet_v2_event_feedback { |