From bb91787b5f0fb0993bb84f0a2aa9202183e579ff Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Fri, 23 Jun 2023 19:54:35 +0200 Subject: [PATCH] cursor: stop using set_image() in wlr_cursor_unset_image() set_image() will go away. --- types/wlr_cursor.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/types/wlr_cursor.c b/types/wlr_cursor.c index 889339ec..f00593c2 100644 --- a/types/wlr_cursor.c +++ b/types/wlr_cursor.c @@ -428,8 +428,11 @@ void wlr_cursor_set_image(struct wlr_cursor *cur, const uint8_t *pixels, } } +static void cursor_update_outputs(struct wlr_cursor *cur); + void wlr_cursor_unset_image(struct wlr_cursor *cur) { - wlr_cursor_set_image(cur, NULL, 0, 0, 0, 0, 0, 0); + cursor_reset_image(cur); + cursor_update_outputs(cur); } static void output_cursor_set_xcursor_image(struct wlr_cursor_output_cursor *output_cursor, size_t i);