Fixed NSBeep on certain chords.

master
Camilla Berglund ago%!(EXTRA string=12 years)
parent 296632c8d2
commit 7ecd2eb53b
  1. 14
      src/cocoa_window.m

@ -466,15 +466,13 @@ static int convertMacKeyCode(unsigned int macKeyCode)
_glfwInputKey(window, convertMacKeyCode([event keyCode]), GLFW_PRESS);
if ([event modifierFlags] & NSCommandKeyMask)
[super keyDown:event];
else
{
NSString* characters = [event characters];
NSUInteger i, length = [characters length];
return;
for (i = 0; i < length; i++)
_glfwInputChar(window, [characters characterAtIndex:i]);
}
NSString* characters = [event characters];
NSUInteger i, length = [characters length];
for (i = 0; i < length; i++)
_glfwInputChar(window, [characters characterAtIndex:i]);
}
- (void)flagsChanged:(NSEvent *)event

Loading…
Cancel
Save