From 6cf39ed9746e5517e3dcba3ec5e7012041f31759 Mon Sep 17 00:00:00 2001 From: Byeong-Sik Jeon Date: Fri, 8 Dec 2006 12:12:16 +0900 Subject: [PATCH] imm32: Send the WM_IME_CHAR message, although ResultString has been read. --- dlls/imm32/imm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/imm32/imm.c b/dlls/imm32/imm.c index 22cd75c7b71..bee6472e164 100644 --- a/dlls/imm32/imm.c +++ b/dlls/imm32/imm.c @@ -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);