mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 12:53:09 +00:00
[win32k]
- 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:
parent
afb6acc945
commit
a5597dfcc1
1 changed files with 11 additions and 11 deletions
|
@ -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) )
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue