mirror of
https://github.com/gnustep/libs-back.git
synced 2025-04-22 15:31:14 +00:00
Add processing for VK_LWIN windows key
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/branches/gnustep_testplant_branch@40060 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
da5ff641d3
commit
8b05cec0e1
1 changed files with 1 additions and 1 deletions
|
@ -3199,7 +3199,7 @@ mask_for_keystate(BYTE *keyState)
|
|||
{
|
||||
// IGNORED - ALtGr key pressed...
|
||||
}
|
||||
else if ((keyState[VK_LCONTROL] & 128) || (keyState[VK_RWIN] & 128))
|
||||
else if ((keyState[VK_LCONTROL] & 128) || (keyState[VK_LWIN] & 128) || (keyState[VK_RWIN] & 128))
|
||||
{
|
||||
if([@"Control_L" isEqualToString: firstAlt] ||
|
||||
[@"Control_L" isEqualToString: secondAlt])
|
||||
|
|
Loading…
Reference in a new issue