mirror of
https://github.com/glfw/glfw.git
synced 2024-11-26 12:02:00 +00:00
Fixed NSBeep on certain chords.
This commit is contained in:
parent
296632c8d2
commit
7ecd2eb53b
@ -466,15 +466,13 @@ static int convertMacKeyCode(unsigned int macKeyCode)
|
|||||||
_glfwInputKey(window, convertMacKeyCode([event keyCode]), GLFW_PRESS);
|
_glfwInputKey(window, convertMacKeyCode([event keyCode]), GLFW_PRESS);
|
||||||
|
|
||||||
if ([event modifierFlags] & NSCommandKeyMask)
|
if ([event modifierFlags] & NSCommandKeyMask)
|
||||||
[super keyDown:event];
|
return;
|
||||||
else
|
|
||||||
{
|
|
||||||
NSString* characters = [event characters];
|
|
||||||
NSUInteger i, length = [characters length];
|
|
||||||
|
|
||||||
for (i = 0; i < length; i++)
|
NSString* characters = [event characters];
|
||||||
_glfwInputChar(window, [characters characterAtIndex:i]);
|
NSUInteger i, length = [characters length];
|
||||||
}
|
|
||||||
|
for (i = 0; i < length; i++)
|
||||||
|
_glfwInputChar(window, [characters characterAtIndex:i]);
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void)flagsChanged:(NSEvent *)event
|
- (void)flagsChanged:(NSEvent *)event
|
||||||
|
Loading…
Reference in New Issue
Block a user