mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-23 05:15:58 +01:00
rootston: hide cursor if seat has no pointer
This commit is contained in:
parent
7f56ccd713
commit
6e9c652fc4
1 changed files with 8 additions and 0 deletions
|
@ -313,6 +313,14 @@ static void seat_update_capabilities(struct roots_seat *seat) {
|
||||||
caps |= WL_SEAT_CAPABILITY_TOUCH;
|
caps |= WL_SEAT_CAPABILITY_TOUCH;
|
||||||
}
|
}
|
||||||
wlr_seat_set_capabilities(seat->seat, caps);
|
wlr_seat_set_capabilities(seat->seat, caps);
|
||||||
|
|
||||||
|
// Hide cursor if seat doesn't have pointer capability
|
||||||
|
if ((caps & WL_SEAT_CAPABILITY_POINTER) == 0) {
|
||||||
|
wlr_cursor_set_image(seat->cursor->cursor, NULL, 0, 0, 0, 0, 0, 0);
|
||||||
|
} else {
|
||||||
|
wlr_xcursor_manager_set_cursor_image(seat->cursor->xcursor_manager,
|
||||||
|
seat->cursor->default_xcursor, seat->cursor->cursor);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void seat_add_keyboard(struct roots_seat *seat,
|
static void seat_add_keyboard(struct roots_seat *seat,
|
||||||
|
|
Loading…
Reference in a new issue