Dmitry Timoshkov : user32: RealChildWindowFromPoint should skip invisible windows.

svn path=/trunk/; revision=55533
This commit is contained in:
James Tabor 2012-02-11 00:44:16 +00:00
parent 4664ff43e2
commit e1f18f1b3b

View file

@ -1688,7 +1688,7 @@ HWND WINAPI
RealChildWindowFromPoint(HWND hwndParent,
POINT ptParentClientCoords)
{
return ChildWindowFromPointEx(hwndParent, ptParentClientCoords, CWP_SKIPTRANSPARENT);
return ChildWindowFromPointEx(hwndParent, ptParentClientCoords, CWP_SKIPTRANSPARENT | CWP_SKIPINVISIBLE);
}
/*