LWJGL Forum

Archive => Resolved Bugs/RFE => Topic started by: Simon Felix on March 18, 2012, 23:02:10

Title: [FIXED] White border in fullscreen
Post by: Simon Felix on March 18, 2012, 23:02:10
Hi everyone

When using a resizable window in fullscreen the window border is visible on Windows. This can be fixed by changing line 1061 in WindowsDisplay.java from if(resizable) { to if(resizable && !Display.isFullscreen()) {

A patch is attached too. I checked whether this works on Windows 7 and Windows 8, both x64. The correct window styles are applied on creation and when switching from/to fullscreen.

Cheers,
Simon
Title: Re: [BUG] White border in fullscreen
Post by: Matzon on March 19, 2012, 22:13:16
thanks - patch applied