Ignore modifiers when processing WM_IME_CHAR messages
* src/w32fns.c (w32_wnd_proc): Ignore modifiers when processing WM_IME_CHAR messages.
This commit is contained in:
committed by
Eli Zaretskii
parent
f641ef1a07
commit
32b97bb9e0
@@ -4576,7 +4576,7 @@ w32_wnd_proc (HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
|
||||
int size, i;
|
||||
W32Msg wmsg;
|
||||
HIMC context = get_ime_context_fn (hwnd);
|
||||
wmsg.dwModifiers = w32_get_key_modifiers (wParam, lParam);
|
||||
wmsg.dwModifiers = 0;
|
||||
/* Get buffer size. */
|
||||
size = get_composition_string_fn (context, GCS_RESULTSTR, NULL, 0);
|
||||
buffer = alloca (size);
|
||||
|
||||
Reference in New Issue
Block a user