From: Marc-André Lureau Date: Tue, 17 Jan 2023 11:34:45 +0000 (+0400) Subject: ui: set cursor upon listener registration X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=de00b60db42dd88ce9aa7c77f5125a8a56308706;p=qemu.git ui: set cursor upon listener registration Signed-off-by: Marc-André Lureau Reviewed-by: Daniel P. Berrangé --- diff --git a/ui/console.c b/ui/console.c index 0dccbdd4be..35f8274aab 100644 --- a/ui/console.c +++ b/ui/console.c @@ -1662,6 +1662,9 @@ void register_displaychangelistener(DisplayChangeListener *dcl) con = active_console; } displaychangelistener_display_console(dcl, con, dcl->con ? &error_fatal : NULL); + if (con && con->cursor && dcl->ops->dpy_cursor_define) { + dcl->ops->dpy_cursor_define(dcl, con->cursor); + } text_console_update_cursor(NULL); }