Moved MsgWaitForMultipleObjects call out of the window lock.

This commit is contained in:
Alexandre Julliard 2002-07-05 01:23:31 +00:00
parent ea8d12c24b
commit a4f19d031c
1 changed files with 4 additions and 5 deletions

View File

@ -688,6 +688,10 @@ BOOL WINAPI RedrawWindow( HWND hwnd, const RECT *rectUpdate,
if (!WIN_IsWindowDrawable( hwnd, !(flags & RDW_FRAME) )) return TRUE;
/* process pending events and messages before painting */
if (flags & RDW_UPDATENOW)
MsgWaitForMultipleObjects( 0, NULL, FALSE, 0, QS_ALLINPUT );
if (!(wndPtr = WIN_FindWndPtr( hwnd ))) return FALSE;
if (TRACE_ON(win))
{
@ -709,11 +713,6 @@ BOOL WINAPI RedrawWindow( HWND hwnd, const RECT *rectUpdate,
}
}
/* process pending events and messages before painting */
if (flags & RDW_UPDATENOW)
MsgWaitForMultipleObjects( 0, NULL, FALSE, 0, QS_ALLINPUT );
/* prepare an update region in window coordinates */
if( flags & RDW_FRAME )