mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-25 23:29:44 -06:00
Comment out wx change to set WS_POPUP.
Fixes issue 6651, apparently. We don't use wxGLCanvas, so the line isn't necessary in the first place.
This commit is contained in:
3
Externals/wxWidgets3/src/msw/toplevel.cpp
vendored
3
Externals/wxWidgets3/src/msw/toplevel.cpp
vendored
@ -1104,7 +1104,8 @@ bool wxTopLevelWindowMSW::ShowFullScreen(bool show, long style)
|
|||||||
// decorations (and are definitely not children) and while not using
|
// decorations (and are definitely not children) and while not using
|
||||||
// this style doesn't seem to make any difference for most windows, it
|
// this style doesn't seem to make any difference for most windows, it
|
||||||
// breaks wxGLCanvas in some cases, see #15434, so just always use it.
|
// breaks wxGLCanvas in some cases, see #15434, so just always use it.
|
||||||
newStyle |= WS_POPUP;
|
// XXX comex: this causes Dolphin issue 6651.
|
||||||
|
// newStyle |= WS_POPUP;
|
||||||
|
|
||||||
// change our window style to be compatible with full-screen mode
|
// change our window style to be compatible with full-screen mode
|
||||||
::SetWindowLong(GetHwnd(), GWL_STYLE, newStyle);
|
::SetWindowLong(GetHwnd(), GWL_STYLE, newStyle);
|
||||||
|
Reference in New Issue
Block a user