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

imm32: Ignore ImmProcessKey if hkl isn't the current layout.

parent 3a07b090
......@@ -3033,6 +3033,7 @@ BOOL WINAPI ImmProcessKey( HWND hwnd, HKL hkl, UINT vkey, LPARAM lparam, DWORD u
TRACE( "hwnd %p, hkl %p, vkey %#x, lparam %#Ix, unknown %#lx\n", hwnd, hkl, vkey, lparam, unknown );
if (hkl != GetKeyboardLayout( 0 )) return FALSE;
if (!(imc = get_imc_data( ImmGetContext( hwnd ) ))) return FALSE;
imc_select_hkl( imc, hkl );
if (!imc->ime) return FALSE;
......
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