diff options
author | Ian Fan <ianfan0@gmail.com> | 2018-09-24 12:29:47 +0100 |
---|---|---|
committer | Ian Fan <ianfan0@gmail.com> | 2018-09-24 12:34:09 +0100 |
commit | a10fef9ae8ca66ad98fb837f163f5c3bbe19d0b9 (patch) | |
tree | f3a72db45939b53815022735f1a0c7231ef79330 /sway/input/cursor.c | |
parent | dafb0526d71ff81f6e392eeb57f76d76a6879482 (diff) |
cursor: allow cursor_set_image to accept a NULL image to hide cursor
Diffstat (limited to 'sway/input/cursor.c')
-rw-r--r-- | sway/input/cursor.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/sway/input/cursor.c b/sway/input/cursor.c index 5111e8e5..8c9f65ab 100644 --- a/sway/input/cursor.c +++ b/sway/input/cursor.c @@ -1006,8 +1006,7 @@ static void handle_touch_down(struct wl_listener *listener, void *data) { if (seat_is_input_allowed(seat, surface)) { wlr_seat_touch_notify_down(wlr_seat, surface, event->time_msec, event->touch_id, sx, sy); - cursor->image_client = NULL; - wlr_cursor_set_image(cursor->cursor, NULL, 0, 0, 0, 0, 0, 0); + cursor_set_image(cursor, NULL, NULL); } } @@ -1175,11 +1174,13 @@ static void handle_request_set_cursor(struct wl_listener *listener, void cursor_set_image(struct sway_cursor *cursor, const char *image, struct wl_client *client) { - if (!cursor->image || strcmp(cursor->image, image) != 0) { + if (!image) { + wlr_cursor_set_image(cursor->cursor, NULL, 0, 0, 0, 0, 0, 0); + } else if (!cursor->image || strcmp(cursor->image, image) != 0) { wlr_xcursor_manager_set_cursor_image(cursor->xcursor_manager, image, cursor->cursor); - cursor->image = image; } + cursor->image = image; cursor->image_client = client; } |