diff options
author | Ian Fan <[email protected]> | 2018-09-24 12:29:47 +0100 |
---|---|---|
committer | Ian Fan <[email protected]> | 2018-09-24 12:34:09 +0100 |
commit | a10fef9ae8ca66ad98fb837f163f5c3bbe19d0b9 (patch) | |
tree | f3a72db45939b53815022735f1a0c7231ef79330 /sway/input/seat.c | |
parent | dafb0526d71ff81f6e392eeb57f76d76a6879482 (diff) |
cursor: allow cursor_set_image to accept a NULL image to hide cursor
Diffstat (limited to 'sway/input/seat.c')
-rw-r--r-- | sway/input/seat.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sway/input/seat.c b/sway/input/seat.c index 34fc1ab8..4817eae7 100644 --- a/sway/input/seat.c +++ b/sway/input/seat.c @@ -378,7 +378,7 @@ static void seat_update_capabilities(struct sway_seat *seat) { // 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); + cursor_set_image(seat->cursor, NULL, NULL); } else { cursor_set_image(seat->cursor, "left_ptr", NULL); } @@ -561,8 +561,7 @@ void seat_configure_xcursor(struct sway_seat *seat) { output->name, (double)output->scale); } - wlr_xcursor_manager_set_cursor_image(seat->cursor->xcursor_manager, - "left_ptr", seat->cursor->cursor); + cursor_set_image(seat->cursor, "left_ptr", NULL); wlr_cursor_warp(seat->cursor->cursor, NULL, seat->cursor->cursor->x, seat->cursor->cursor->y); } |