shell32/autocomplete: Handle WM_SETTEXT for autocompletion.

Signed-off-by: Gabriel Ivăncescu <gabrielopcode@gmail.com>
Signed-off-by: Huw Davies <huw@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Gabriel Ivăncescu 2018-09-22 17:53:44 +03:00 committed by Alexandre Julliard
parent 087c24dfdc
commit 03fe246897
1 changed files with 1 additions and 0 deletions

View File

@ -370,6 +370,7 @@ static LRESULT APIENTRY ACEditSubclassProc(HWND hwnd, UINT uMsg, WPARAM wParam,
autocomplete_text(This, hwnd, (This->options & ACO_AUTOAPPEND) && wParam >= ' '
? autoappend_flag_yes : autoappend_flag_no);
return ret;
case WM_SETTEXT:
case WM_CUT:
case WM_CLEAR:
case WM_UNDO: