Merge pull request #19 from theWatchmen/master

Fixed crash when pressing TAB on Mac
This commit is contained in:
Daniel Collin 2016-05-02 23:04:01 +02:00
commit a3b1a824e4

View file

@ -88,6 +88,16 @@
return YES;
}
- (NSView *)nextValidKeyView
{
return self;
}
- (NSView *)previousValidKeyView
{
return self;
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
- (BOOL)acceptsFirstResponder