From 53b07b5b7279825d917cade677163ddb8ad5acee Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Fri, 23 Jun 2023 19:42:18 +0200 Subject: [PATCH] cursor: set image for new outputs When an output is added to wlr_cursor, update its cursor image. Closes: https://gitlab.freedesktop.org/wlroots/wlroots/-/issues/2119 --- types/wlr_cursor.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/types/wlr_cursor.c b/types/wlr_cursor.c index f394d38d..889339ec 100644 --- a/types/wlr_cursor.c +++ b/types/wlr_cursor.c @@ -1033,6 +1033,8 @@ static void layout_add(struct wlr_cursor_state *state, &output_cursor->layout_output_destroy); wl_list_insert(&state->output_cursors, &output_cursor->link); + + cursor_output_cursor_update(output_cursor); } static void handle_layout_add(struct wl_listener *listener, void *data) {