From 8e3a9fd28059821f819295fe9178435990141924 Mon Sep 17 00:00:00 2001 From: bellard Date: Sat, 9 Oct 2004 17:32:58 +0000 Subject: monitor fixes (Johannes Schindelin) git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1109 c046a42c-6fe2-441c-8c8c-71466251a162 --- console.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'console.c') diff --git a/console.c b/console.c index 171d2a9379..b99a3bf189 100644 --- a/console.c +++ b/console.c @@ -570,8 +570,11 @@ void console_select(unsigned int index) active_console = s; if (s->text_console) { if (s->g_width != s->ds->width || - s->g_height != s->ds->height) + s->g_height != s->ds->height) { + s->g_width = s->ds->width; + s->g_height = s->ds->height; text_console_resize(s); + } console_refresh(s); } } -- cgit v1.2.1