mirror of
https://github.com/glfw/glfw.git
synced 2024-11-11 13:03:52 +00:00
Fix modifier keys.
The wrong mask was used making all modifier keys not be recognized.
This commit is contained in:
parent
d4a61bbd36
commit
85b64edcf0
@ -450,7 +450,7 @@ static int convertMacKeyCode(unsigned int macKeyCode)
|
||||
{
|
||||
int mode, key;
|
||||
unsigned int newModifierFlags =
|
||||
[event modifierFlags] | NSDeviceIndependentModifierFlagsMask;
|
||||
[event modifierFlags] & NSDeviceIndependentModifierFlagsMask;
|
||||
|
||||
if (newModifierFlags > window->ns.modifierFlags)
|
||||
mode = GLFW_PRESS;
|
||||
|
Loading…
Reference in New Issue
Block a user