From 7900c71c73789e59239c0c40ce6c5ee04a1679dd Mon Sep 17 00:00:00 2001 From: Julian Smart Date: Fri, 31 Aug 2001 10:29:40 +0000 Subject: [PATCH] Remove _all_ borders if that's what we specify to ShowFullScreen. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11523 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/msw/frame.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/msw/frame.cpp b/src/msw/frame.cpp index 7013f9d85d..d766cb0992 100644 --- a/src/msw/frame.cpp +++ b/src/msw/frame.cpp @@ -615,7 +615,7 @@ bool wxFrameMSW::ShowFullScreen(bool show, long style) LONG offFlags = 0; if (style & wxFULLSCREEN_NOBORDER) - offFlags |= WS_BORDER; + offFlags |= WS_BORDER | WS_THICKFRAME; if (style & wxFULLSCREEN_NOCAPTION) offFlags |= (WS_CAPTION | WS_SYSMENU); -- 2.50.0