mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 23:01:50 +00:00
- Fixed: Menu mouse navigation didn't work in fullscreen on Linux.
SVN r3151 (trunk)
This commit is contained in:
parent
1806e47e43
commit
99df7354b1
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue