From: Gabriel Ivăncescu Subject: [PATCH v2 8/8] shell32/tests: Handle WM_SETTEXT for autocompletion Message-Id: <03d2586ec61efc3a3901af205a87e1f41f5b1f08.1537444354.git.gabrielopcode@gmail.com> Date: Thu, 20 Sep 2018 14:55:41 +0300 In-Reply-To: References: Signed-off-by: Gabriel Ivăncescu --- This should work now that we send it directly to the edit control's procedure. dlls/shell32/autocomplete.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/shell32/autocomplete.c b/dlls/shell32/autocomplete.c index d03feb5..23ff59a 100644 --- a/dlls/shell32/autocomplete.c +++ b/dlls/shell32/autocomplete.c @@ -388,6 +388,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: -- 1.9.1