Commit 97c0a52a authored by Rémi Bernon's avatar Rémi Bernon Committed by Alexandre Julliard

winex11: Report empty preedit string when result string is committed.

Based on a patch from Byeong-Sik Jeon <bsjeon@hanmail.net>. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=55027
parent e5646191
......@@ -140,7 +140,7 @@ void xim_set_result_string( HWND hwnd, const char *str, UINT count )
len = ntdll_umbstowcs( str, count, output, count );
output[len] = 0;
post_ime_update( hwnd, 0, ime_comp_buf, output );
post_ime_update( hwnd, 0, NULL, output );
free( output );
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment