Author: gadamopoulos Date: Mon Oct 27 23:49:06 2014 New Revision: 65057
URL: http://svn.reactos.org/svn/reactos?rev=65057&view=rev Log: [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
Modified: branches/shell-experiments/win32ss/user/ntuser/message.c
Modified: branches/shell-experiments/win32ss/user/ntuser/message.c URL: http://svn.reactos.org/svn/reactos/branches/shell-experiments/win32ss/user/n... ============================================================================== --- branches/shell-experiments/win32ss/user/ntuser/message.c [iso-8859-1] (original) +++ branches/shell-experiments/win32ss/user/ntuser/message.c [iso-8859-1] Mon Oct 27 23:49:06 2014 @@ -851,6 +851,17 @@ 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, @@ -860,17 +871,6 @@ MsgFilterMax, ProcessMask, Msg)) - { - return TRUE; - } - - if ((ProcessMask & QS_MOUSE) && - co_MsqPeekMouseMove( pti, - RemoveMessages, - Window, - MsgFilterMin, - MsgFilterMax, - Msg )) { return TRUE; }