From a38821fc389ea418415ccf107aa74a33d11999e8 Mon Sep 17 00:00:00 2001 From: comex Date: Tue, 24 Sep 2013 22:48:31 -0400 Subject: [PATCH] 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. --- Externals/wxWidgets3/src/msw/toplevel.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Externals/wxWidgets3/src/msw/toplevel.cpp b/Externals/wxWidgets3/src/msw/toplevel.cpp index 37b3a3d0a7..25ab481401 100644 --- a/Externals/wxWidgets3/src/msw/toplevel.cpp +++ b/Externals/wxWidgets3/src/msw/toplevel.cpp @@ -1104,7 +1104,8 @@ bool wxTopLevelWindowMSW::ShowFullScreen(bool show, long style) // decorations (and are definitely not children) and while not using // 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. - newStyle |= WS_POPUP; + // XXX comex: this causes Dolphin issue 6651. + // newStyle |= WS_POPUP; // change our window style to be compatible with full-screen mode ::SetWindowLong(GetHwnd(), GWL_STYLE, newStyle);