ui/console: console_select() regardless of have_gfx

Even if we don't have a gfx listener, we should call
displaychangelistener_display_console() which handle that case correctly.

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Message-Id: <20230830093843.3531473-7-marcandre.lureau@redhat.com>
This commit is contained in:
Marc-André Lureau 2023-08-30 13:37:40 +04:00 committed by Patchew Applier
parent 177422789b
commit 074b24094f

View File

@ -1047,13 +1047,11 @@ void console_select(unsigned int index)
DisplayState *ds = s->ds; DisplayState *ds = s->ds;
active_console = s; active_console = s;
if (ds->have_gfx) { QLIST_FOREACH (dcl, &ds->listeners, next) {
QLIST_FOREACH(dcl, &ds->listeners, next) { if (dcl->con != NULL) {
if (dcl->con != NULL) { continue;
continue;
}
displaychangelistener_display_console(dcl, s, NULL);
} }
displaychangelistener_display_console(dcl, s, NULL);
} }
dpy_text_resize(s, s->width, s->height); dpy_text_resize(s, s->width, s->height);
text_console_update_cursor(NULL); text_console_update_cursor(NULL);