From 6798413bf55ef293cc86e3c1b91c45b205e9eb10 Mon Sep 17 00:00:00 2001 From: James Tabor Date: Fri, 13 Jun 2014 01:40:59 +0000 Subject: [PATCH] [Win32k] - Test for disabled windows, fix CORE-8089 and see CORE-6651. svn path=/trunk/; revision=63593 --- reactos/win32ss/user/ntuser/msgqueue.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/win32ss/user/ntuser/msgqueue.c b/reactos/win32ss/user/ntuser/msgqueue.c index e6f31cb62b4..26f0cf41ee0 100644 --- a/reactos/win32ss/user/ntuser/msgqueue.c +++ b/reactos/win32ss/user/ntuser/msgqueue.c @@ -1369,7 +1369,7 @@ BOOL co_IntProcessMouseMessage(MSG* msg, BOOL* RemoveMessages, UINT first, UINT } else { - pwndMsg = co_WinPosWindowFromPoint(NULL, &msg->pt, &hittest, TRUE); + pwndMsg = co_WinPosWindowFromPoint(NULL, &msg->pt, &hittest, FASLE);//TRUE); } TRACE("Got mouse message for %p, hittest: 0x%x\n", msg->hwnd, hittest);