From: <eli...@us...> - 2006-12-22 11:23:47
|
Revision: 2706 http://svn.sourceforge.net/java-game-lib/?rev=2706&view=rev Author: elias_naur Date: 2006-12-22 03:23:45 -0800 (Fri, 22 Dec 2006) Log Message: ----------- Windows: Don't use WS_EX_TOPMOST for fullscreen windows. Modified Paths: -------------- trunk/LWJGL/src/native/windows/context.c Modified: trunk/LWJGL/src/native/windows/context.c =================================================================== --- trunk/LWJGL/src/native/windows/context.c 2006-12-22 10:45:39 UTC (rev 2705) +++ trunk/LWJGL/src/native/windows/context.c 2006-12-22 11:23:45 UTC (rev 2706) @@ -114,7 +114,7 @@ void getWindowFlags(DWORD *windowflags_return, DWORD *exstyle_return, bool fullscreen, bool undecorated) { DWORD exstyle, windowflags; if (fullscreen) { - exstyle = WS_EX_APPWINDOW | WS_EX_TOPMOST; + exstyle = WS_EX_APPWINDOW; windowflags = WS_POPUP; } else if (undecorated) { exstyle = WS_EX_APPWINDOW; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |