mirror of
https://github.com/glfw/glfw.git
synced 2026-02-17 21:12:34 +01:00
Fix modifier keys.
The wrong mask was used making all modifier keys not be recognized.
This commit is contained in:
committed by
Camilla Berglund
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;
|
||||
|
||||
Reference in New Issue
Block a user