cursor-shape-v1: handle inert tablet tool client

If the tablet tool is inert, the wlr_tablet_tool_client_v2 can be
NULL.
This commit is contained in:
Simon Ser 2024-03-04 17:38:37 +01:00
parent c3743364e2
commit 31c842e5ec
1 changed files with 4 additions and 1 deletions

View File

@ -126,7 +126,10 @@ static void manager_handle_get_pointer(struct wl_client *client, struct wl_resou
static void manager_handle_get_tablet_tool_v2(struct wl_client *client, struct wl_resource *manager_resource,
uint32_t id, struct wl_resource *tablet_tool_resource) {
struct wlr_tablet_tool_client_v2 *tablet_tool_client = tablet_tool_client_from_resource(tablet_tool_resource);
struct wlr_seat_client *seat_client = tablet_tool_client->seat->seat_client;
struct wlr_seat_client *seat_client = NULL;
if (tablet_tool_client != NULL) {
seat_client = tablet_tool_client->seat->seat_client;
}
create_device(manager_resource, id, seat_client,
WLR_CURSOR_SHAPE_MANAGER_V1_DEVICE_TYPE_TABLET_TOOL);
}