mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 08:05:43 +00:00
Dmitry Timoshkov : user32: RealChildWindowFromPoint should skip invisible windows.
svn path=/trunk/; revision=55533
This commit is contained in:
parent
4664ff43e2
commit
e1f18f1b3b
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue