Index: code/sdl/sdl_input.c =================================================================== --- code/sdl/sdl_input.c (revision 1398) +++ code/sdl/sdl_input.c (working copy) @@ -288,18 +288,17 @@ if( !mouseActive ) { - SDL_WM_GrabInput( SDL_GRAB_ON ); SDL_ShowCursor( 0 ); - #ifdef MACOS_X_CURSOR_HACK // This is a bug in the current SDL/macosx...have to toggle it a few // times to get the cursor to hide. SDL_ShowCursor( 1 ); SDL_ShowCursor( 0 ); #endif + SDL_WM_GrabInput( SDL_GRAB_ON ); } - // in_nograb makes no sense unless fullscreen + // in_nograb makes no sense in fullscreen mode if( !r_fullscreen->integer ) { if( in_nograb->modified || !mouseActive ) @@ -347,8 +346,9 @@ if( mouseActive ) { + SDL_WM_GrabInput( SDL_GRAB_OFF ); + SDL_WarpMouse( glConfig.vidWidth >> 1, glConfig.vidHeight >> 1 ); SDL_ShowCursor( 1 ); - SDL_WM_GrabInput( SDL_GRAB_OFF ); mouseActive = qfalse; } @@ -719,6 +719,15 @@ } break; + case SDL_ACTIVEEVENT: + if( e.active.state == SDL_APPINPUTFOCUS ) { + if( e.active.gain ) + IN_ActivateMouse(); + else + IN_DeactivateMouse(); + } + break; + case SDL_QUIT: Sys_Quit(); break; @@ -741,8 +750,10 @@ { IN_JoyMove( ); - // Release the mouse if the console if down and we're windowed - if( ( Key_GetCatcher( ) & KEYCATCH_CONSOLE ) && !r_fullscreen->integer ) + // release the mouse if the console is down in windowed mode, + // or if the window loses focus due to task switching + if( ( Key_GetCatcher( ) & KEYCATCH_CONSOLE ) && !r_fullscreen->integer + || !( SDL_GetAppState() & SDL_APPINPUTFOCUS ) ) IN_DeactivateMouse( ); else IN_ActivateMouse( );