- Revert a recent change in trunk that broke the new shell. Its a shame to see the new shell behave like crap because of win32k

svn path=/branches/shell-experiments/; revision=65057
This commit is contained in:
Giannis Adamopoulos 2014-10-27 23:49:06 +00:00
parent afb6acc945
commit a5597dfcc1

View file

@ -851,6 +851,17 @@ co_IntPeekMessage( PMSG Msg,
return TRUE;
}
if ((ProcessMask & QS_MOUSE) &&
co_MsqPeekMouseMove( pti,
RemoveMessages,
Window,
MsgFilterMin,
MsgFilterMax,
Msg ))
{
return TRUE;
}
/* Check for hardware events. */
if ((ProcessMask & QS_INPUT) &&
co_MsqPeekHardwareMessage( pti,
@ -864,17 +875,6 @@ co_IntPeekMessage( PMSG Msg,
return TRUE;
}
if ((ProcessMask & QS_MOUSE) &&
co_MsqPeekMouseMove( pti,
RemoveMessages,
Window,
MsgFilterMin,
MsgFilterMax,
Msg ))
{
return TRUE;
}
/* Check for sent messages again. */
while ( co_MsqDispatchOneSentMessage(pti) )
{