Skip to content

Commit

Permalink
Comment out wx change to set WS_POPUP.
Browse files Browse the repository at this point in the history
Fixes issue 6651, apparently.  We don't use wxGLCanvas, so the line
isn't necessary in the first place.
  • Loading branch information
comex committed Sep 25, 2013
1 parent ae75f92 commit a38821f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Externals/wxWidgets3/src/msw/toplevel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit a38821f

Please sign in to comment.