Module: wine Branch: master Commit: a54755c87c0f12041585923cf09af7d239fb3e20 URL: https://source.winehq.org/git/wine.git/?a=commit;h=a54755c87c0f12041585923cf...
Author: Timo Zuccarello timo@zuccarello.eu Date: Wed Apr 13 16:04:18 2022 +0200
winex11.drv: Do not assign reserved virtual key 0xE0 to key codes.
Signed-off-by: Timo Zuccarello timo@zuccarello.eu Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/winex11.drv/keyboard.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/dlls/winex11.drv/keyboard.c b/dlls/winex11.drv/keyboard.c index 786b6f4e084..170231c0026 100644 --- a/dlls/winex11.drv/keyboard.c +++ b/dlls/winex11.drv/keyboard.c @@ -1579,7 +1579,8 @@ void X11DRV_InitKeyboard( Display *display ) WORD first, last; } vkey_ranges[] = { { VK_OEM_1, VK_OEM_3 }, - { VK_OEM_4, VK_ICO_00 }, + { VK_OEM_4, VK_OEM_8 }, + { VK_OEM_AX, VK_ICO_00 }, { 0xe6, 0xe6 }, { 0xe9, 0xf5 }, { VK_OEM_NEC_EQUAL, VK_OEM_NEC_EQUAL },