From: Ian Jackson Date: Tue, 6 May 2008 11:07:44 +0000 (+0100) Subject: merge from in qemu upstream: show right cursor when ungrabbing, by clearing gui_grab... X-Git-Tag: xen-3.3.0-rc1~211 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=bec131e69d29e55472f98412aa302f4c671423b3;p=qemu-xen-4.0-testing.git merge from in qemu upstream: show right cursor when ungrabbing, by clearing gui_grab before calling sdl_show_cursor --- diff --git a/sdl.c b/sdl.c index 87927893..0954e179 100644 --- a/sdl.c +++ b/sdl.c @@ -463,8 +463,8 @@ static void sdl_grab_start(void) static void sdl_grab_end(void) { SDL_WM_GrabInput(SDL_GRAB_OFF); - sdl_show_cursor(); gui_grab = 0; + sdl_show_cursor(); sdl_update_caption(); }