engine: platform: sdl: grab input only in true fullscreen mode
This commit is contained in:
parent
cb1063c305
commit
4acd0e5304
1 changed files with 4 additions and 3 deletions
|
@ -757,14 +757,15 @@ qboolean VID_CreateWindow( int width, int height, window_mode_t window_mode )
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if( window_mode == WINDOW_MODE_FULLSCREEN )
|
if( window_mode == WINDOW_MODE_FULLSCREEN )
|
||||||
SetBits( wndFlags, SDL_WINDOW_FULLSCREEN );
|
// need input grab only in true fullscreen mode
|
||||||
|
SetBits( wndFlags, SDL_WINDOW_FULLSCREEN | SDL_WINDOW_INPUT_GRABBED );
|
||||||
else
|
else
|
||||||
SetBits( wndFlags, SDL_WINDOW_FULLSCREEN_DESKTOP );
|
SetBits( wndFlags, SDL_WINDOW_FULLSCREEN_DESKTOP );
|
||||||
SetBits( wndFlags, SDL_WINDOW_BORDERLESS | SDL_WINDOW_INPUT_GRABBED );
|
SetBits( wndFlags, SDL_WINDOW_BORDERLESS );
|
||||||
xpos = ypos = 0;
|
xpos = ypos = 0;
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
wndFlags |= SDL_WINDOW_FULLSCREEN | SDL_WINDOW_FULLSCREEN_DESKTOP | SDL_WINDOW_INPUT_GRABBED;
|
SetBits( wndFlags, SDL_WINDOW_FULLSCREEN | SDL_WINDOW_FULLSCREEN_DESKTOP | SDL_WINDOW_INPUT_GRABBED );
|
||||||
xpos = ypos = SDL_WINDOWPOS_UNDEFINED;
|
xpos = ypos = SDL_WINDOWPOS_UNDEFINED;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue