Author: dquintana
Date: Fri May 16 19:13:12 2014
New Revision: 63316
URL:
http://svn.reactos.org/svn/reactos?rev=63316&view=rev
Log:
[WIN32K/NTUSER]
* HSHELL_WINDOWCREATED should only be sent for visible windows.
CORE-8226 #resolve #comment Fixed in the latest commit. Thanks for reporting.
Modified:
branches/shell-experiments/win32ss/user/ntuser/window.c
Modified: branches/shell-experiments/win32ss/user/ntuser/window.c
URL:
http://svn.reactos.org/svn/reactos/branches/shell-experiments/win32ss/user/…
==============================================================================
--- branches/shell-experiments/win32ss/user/ntuser/window.c [iso-8859-1] (original)
+++ branches/shell-experiments/win32ss/user/ntuser/window.c [iso-8859-1] Fri May 16
19:13:12 2014
@@ -2430,6 +2430,7 @@
/* Notify the shell that a new window was created */
if (Window->spwndParent == UserGetDesktopWindow() &&
Window->spwndOwner == NULL &&
+ (Window->style & WS_VISIBLE) &&
(!(Window->ExStyle & WS_EX_TOOLWINDOW) ||
(Window->ExStyle & WS_EX_APPWINDOW)))
{