- Fixed: Menu mouse navigation didn't work in fullscreen on Linux.

SVN r3151 (trunk)
This commit is contained in:
Braden Obrzut 2011-02-13 06:32:10 +00:00
parent 1806e47e43
commit 99df7354b1
1 changed files with 1 additions and 1 deletions

View File

@ -263,7 +263,7 @@ static void I_CheckNativeMouse ()
== (SDL_APPINPUTFOCUS|SDL_APPACTIVE);
bool fs = (SDL_GetVideoSurface ()->flags & SDL_FULLSCREEN) != 0;
bool wantNative = !focus || (!fs && (!use_mouse || GUICapture || paused || demoplayback || !inGame()));
bool wantNative = !focus || (!use_mouse || GUICapture || paused || demoplayback || !inGame());
if (wantNative != NativeMouse)
{