diff options
author | 2021-04-13 20:39:11 +0400 | |
---|---|---|
committer | 2021-12-21 10:50:21 +0400 | |
commit | ca19ef52999251443b511b53e7b0498dd247261e (patch) | |
tree | 910c07bed1bebacff9f6a873b5b2bc781d28b04e /ui/gtk.c | |
parent | virtio-gpu: use VIRTIO_GPU_RESOURCE_FLAG_Y_0_TOP (diff) | |
download | qemu-ca19ef52999251443b511b53e7b0498dd247261e.tar.xz qemu-ca19ef52999251443b511b53e7b0498dd247261e.zip |
ui: do not delay further remote resize
A remote client, such as Spice, will already avoid flooding the stream
by delaying the resize requests.
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Acked-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'ui/gtk.c')
-rw-r--r-- | ui/gtk.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -698,7 +698,7 @@ static void gd_set_ui_info(VirtualConsole *vc, gint width, gint height) memset(&info, 0, sizeof(info)); info.width = width; info.height = height; - dpy_set_ui_info(vc->gfx.dcl.con, &info); + dpy_set_ui_info(vc->gfx.dcl.con, &info, true); } #if defined(CONFIG_OPENGL) |