Author: cwittich Date: Tue Jul 17 03:02:29 2007 New Revision: 27705
URL: http://svn.reactos.org/svn/reactos?rev=27705&view=rev Log: -forgot to save the file before committing - this is the actual fix from 27703
Modified: trunk/reactos/dll/win32/user32/windows/window.c
Modified: trunk/reactos/dll/win32/user32/windows/window.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/user32/windows/wi... ============================================================================== --- trunk/reactos/dll/win32/user32/windows/window.c (original) +++ trunk/reactos/dll/win32/user32/windows/window.c Tue Jul 17 03:02:29 2007 @@ -193,6 +193,10 @@ ControlsInitialized = ControlsInit(ClassName.Buffer); }
+ /* remove DS_SHELLFONT style because it conflicts with WS_EX_MDICHILD */ + if (dwExStyle & DS_SHELLFONT) + dwExStyle &= ~DS_SHELLFONT; + if (dwExStyle & WS_EX_MDICHILD) { POINT mPos[2];