mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[win32k]
- Fix a bug that caused problems when the user clicks in the caption of a window to activate it svn path=/trunk/; revision=50807
This commit is contained in:
parent
dda9fb952c
commit
bc92849c38
1 changed files with 1 additions and 1 deletions
|
@ -1093,7 +1093,7 @@ BOOL co_IntProcessMouseMessage(MSG* msg, BOOL* RemoveMessages, UINT first, UINT
|
|||
|
||||
/* Activate the window if needed */
|
||||
|
||||
if (msg->hwnd != MessageQueue->ActiveWindow)
|
||||
if (msg->hwnd != UserGetForegroundWindow())
|
||||
{
|
||||
PWND pwndTop = pwndMsg;
|
||||
while (pwndTop)
|
||||
|
|
Loading…
Reference in a new issue