wordpad: Search finished message box should be modal.

This commit is contained in:
Dylan Smith 2010-07-19 18:18:17 -04:00 committed by Alexandre Julliard
parent fbd30765f0
commit dd789d50f2
1 changed files with 4 additions and 2 deletions

View File

@ -1288,8 +1288,10 @@ static LRESULT handle_findmsg(LPFINDREPLACEW pFr)
if (ret == -1) {
custom_data->endPos = -1;
MessageBoxWithResStringW(hMainWnd, MAKEINTRESOURCEW(STRING_SEARCH_FINISHED),
wszAppTitle, MB_OK | MB_ICONASTERISK);
EnableWindow(hMainWnd, FALSE);
MessageBoxWithResStringW(hFindWnd, MAKEINTRESOURCEW(STRING_SEARCH_FINISHED),
wszAppTitle, MB_OK | MB_ICONASTERISK | MB_TASKMODAL);
EnableWindow(hMainWnd, TRUE);
} else {
SendMessageW(hEditorWnd, EM_SETSEL, ft.chrgText.cpMin, ft.chrgText.cpMax);
SendMessageW(hEditorWnd, EM_SCROLLCARET, 0, 0);