Commit b5f8b922 authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

Added an another special case handling for Shift+[NumPad]DEL.

parent d2e2bb24
...@@ -1495,6 +1495,12 @@ INT X11DRV_ToUnicode(UINT virtKey, UINT scanCode, LPBYTE lpKeyState, ...@@ -1495,6 +1495,12 @@ INT X11DRV_ToUnicode(UINT virtKey, UINT scanCode, LPBYTE lpKeyState,
*(char*)lpChar = 0; *(char*)lpChar = 0;
ret = 0; ret = 0;
} }
else if((lpKeyState[VK_SHIFT] & 0x80) /* Shift is pressed */
&& (keysym == XK_KP_Decimal))
{
*(char*)lpChar = 0;
ret = 0;
}
/* perform translation to unicode */ /* perform translation to unicode */
if(ret) if(ret)
......
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