Commit 4f8a7592 authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

Disable remaining piece of the code which auto assigns virtual key

codes, it breaks VK_OEM_102 in finnish/swedish keyboard layouts.
parent d921c5d4
......@@ -1462,7 +1462,7 @@ void X11DRV_InitKeyboard( BYTE *key_state_table )
case '+': vkey = VK_OEM_PLUS; break;
}
}
#endif
if (!vkey)
{
/* Others keys: let's assign OEM virtual key codes in the allowed range,
......@@ -1494,6 +1494,7 @@ void X11DRV_InitKeyboard( BYTE *key_state_table )
TRACE(")\n");
}
}
#endif
}
TRACE("keycode %04x => vkey %04x\n", e2.keycode, vkey);
keyc2vkey[e2.keycode] = vkey;
......
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