mirror of
https://github.com/reactos/wine.git
synced 2025-04-04 00:51:40 +00:00
wordpad: Search finished message box should be modal.
This commit is contained in:
parent
fbd30765f0
commit
dd789d50f2
@ -1288,8 +1288,10 @@ static LRESULT handle_findmsg(LPFINDREPLACEW pFr)
|
|||||||
|
|
||||||
if (ret == -1) {
|
if (ret == -1) {
|
||||||
custom_data->endPos = -1;
|
custom_data->endPos = -1;
|
||||||
MessageBoxWithResStringW(hMainWnd, MAKEINTRESOURCEW(STRING_SEARCH_FINISHED),
|
EnableWindow(hMainWnd, FALSE);
|
||||||
wszAppTitle, MB_OK | MB_ICONASTERISK);
|
MessageBoxWithResStringW(hFindWnd, MAKEINTRESOURCEW(STRING_SEARCH_FINISHED),
|
||||||
|
wszAppTitle, MB_OK | MB_ICONASTERISK | MB_TASKMODAL);
|
||||||
|
EnableWindow(hMainWnd, TRUE);
|
||||||
} else {
|
} else {
|
||||||
SendMessageW(hEditorWnd, EM_SETSEL, ft.chrgText.cpMin, ft.chrgText.cpMax);
|
SendMessageW(hEditorWnd, EM_SETSEL, ft.chrgText.cpMin, ft.chrgText.cpMax);
|
||||||
SendMessageW(hEditorWnd, EM_SCROLLCARET, 0, 0);
|
SendMessageW(hEditorWnd, EM_SCROLLCARET, 0, 0);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user