imm32: Send the WM_IME_CHAR message, although ResultString has been read.

oldstable
Byeong-Sik Jeon 2006-12-08 12:12:16 +09:00 committed by Alexandre Julliard
parent fa8b971c2e
commit 6cf39ed974
1 changed files with 1 additions and 1 deletions

View File

@ -1566,7 +1566,7 @@ static LRESULT WINAPI IME_WindowProc(HWND hwnd, UINT msg, WPARAM wParam,
TRACE("IME message %s, 0x%x, 0x%x (%i)\n",
"WM_IME_COMPOSITION", (UINT)wParam, (UINT)lParam,
root_context->bRead);
if ((lParam & GCS_RESULTSTR) && (!root_context->bRead))
if (lParam & GCS_RESULTSTR)
IMM_PostResult(root_context);
else
UpdateDataInDefaultIMEWindow(hwnd);