[WIN32K/NTUSER]

* HSHELL_WINDOWCREATED should only be sent for visible windows.
CORE-8226 #resolve #comment Fixed in the latest commit. Thanks for reporting.

svn path=/branches/shell-experiments/; revision=63316
This commit is contained in:
David Quintana 2014-05-16 19:13:12 +00:00
parent 1f5d24518e
commit 7a09d4a028

View file

@ -2430,6 +2430,7 @@ co_UserCreateWindowEx(CREATESTRUCTW* Cs,
/* 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)))
{