disable grab if the window no longer has the focus (Windows case) (Mike Nordell)

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@777 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
bellard 2004-04-29 22:15:15 +00:00
parent d8d8aa4e2c
commit 0294ffb9c8
1 changed files with 5 additions and 0 deletions

5
sdl.c
View File

@ -301,6 +301,11 @@ static void sdl_refresh(DisplayState *ds)
}
}
break;
case SDL_ACTIVEEVENT:
if (gui_grab && (ev->active.gain & SDL_ACTIVEEVENTMASK) == 0) {
sdl_grab_end();
}
break;
default:
break;
}