Events go on Keyup, duh.

This commit is contained in:
Corey Johnson & Nathan Sobo
2011-12-15 16:01:41 -08:00
parent a07daf26ca
commit b3ce89d294

View File

@@ -34,7 +34,7 @@
#pragma mark Overrides
- (void)sendEvent:(NSEvent *)event {
if ([event type] != NSKeyDown) {
if ([event type] != NSKeyUp) {
[super sendEvent:event];
return;
}