Author: jimtabor
Date: Sat Feb 11 00:44:16 2012
New Revision: 55533
URL:
http://svn.reactos.org/svn/reactos?rev=55533&view=rev
Log:
Dmitry Timoshkov : user32: RealChildWindowFromPoint should skip invisible windows.
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/w…
==============================================================================
--- trunk/reactos/dll/win32/user32/windows/window.c [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/user32/windows/window.c [iso-8859-1] Sat Feb 11 00:44:16 2012
@@ -1688,7 +1688,7 @@
RealChildWindowFromPoint(HWND hwndParent,
POINT ptParentClientCoords)
{
- return ChildWindowFromPointEx(hwndParent, ptParentClientCoords,
CWP_SKIPTRANSPARENT);
+ return ChildWindowFromPointEx(hwndParent, ptParentClientCoords, CWP_SKIPTRANSPARENT |
CWP_SKIPINVISIBLE);
}
/*