Avoid UpdateWindow, it causes trouble with WS_EX_TRANSPARENT.

This commit is contained in:
Mike McCormack 2005-09-29 10:48:08 +00:00 committed by Alexandre Julliard
parent 5eae622f44
commit 0560ea618e
1 changed files with 1 additions and 1 deletions

View File

@ -1911,7 +1911,7 @@ UINT msi_dialog_run_message_loop( msi_dialog *dialog )
}
ShowWindow( hwnd, SW_SHOW );
UpdateWindow( hwnd );
/* UpdateWindow( hwnd ); - and causes the transparent static controls not to paint */
if( dialog->attributes & msidbDialogAttributesModal )
{