Skip to content
Snippets Groups Projects
Commit e17aaa22 authored by Ove Kåven's avatar Ove Kåven Committed by Alexandre Julliard
Browse files

Win2000: If both WS_EX_LAYERED and WS_EX_TRANSPARENT styles are set,

mouse clicks should go straight through the window.
parent 76df4327
No related branches found
No related tags found
No related merge requests found
......@@ -478,6 +478,7 @@ INT16 WINPOS_WindowFromPoint( WND* wndScope, POINT16 pt, WND **ppWnd )
/* its children. Otherwise, go to the next window. */
if ((wndPtr->dwStyle & WS_VISIBLE) &&
((wndPtr->dwExStyle & (WS_EX_LAYERED | WS_EX_TRANSPARENT)) != (WS_EX_LAYERED | WS_EX_TRANSPARENT)) &&
(!(wndPtr->dwStyle & WS_DISABLED) ||
((wndPtr->dwStyle & (WS_POPUP | WS_CHILD)) != WS_CHILD)) &&
(wndPtr->hrgnWnd ?
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment