mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-05-04 22:18:08 +02:00
Don't trap the Windows keys for now.
This commit is contained in:
parent
52fa100033
commit
1fc050a7d3
1 changed files with 4 additions and 1 deletions
|
|
@ -79,7 +79,10 @@ winKeyboardMessageHookLL (int iCode, WPARAM wParam, LPARAM lParam)
|
|||
case WM_KEYUP: case WM_SYSKEYUP:
|
||||
fPassKeystroke =
|
||||
((p->vkCode == VK_TAB) && ((p->flags & LLKHF_ALTDOWN) != 0))
|
||||
|| (p->vkCode == VK_LWIN) || (p->vkCode == VK_RWIN);
|
||||
#if 0
|
||||
|| (p->vkCode == VK_LWIN) || (p->vkCode == VK_RWIN)
|
||||
#endif
|
||||
;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue