Module: wine Branch: refs/heads/master Commit: 88cc410fd62f51c52e052c1ca50a1380686ed513 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=88cc410fd62f51c52e052c1c...
Author: Thomas Kho tkho@ucla.edu Date: Mon Jul 31 20:17:03 2006 -0500
msi: Wake dialog on messages from external threads.
---
dlls/msi/dialog.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/msi/dialog.c b/dlls/msi/dialog.c index 9b1c32e..ae4f044 100644 --- a/dlls/msi/dialog.c +++ b/dlls/msi/dialog.c @@ -2598,7 +2598,7 @@ UINT msi_dialog_run_message_loop( msi_di { while( !dialog->finished ) { - MsgWaitForMultipleObjects( 0, NULL, 0, INFINITE, QS_ALLEVENTS ); + MsgWaitForMultipleObjects( 0, NULL, 0, INFINITE, QS_ALLINPUT ); msi_process_pending_messages( dialog->hwnd ); } }