Fixed: #1119 Crash when pressing a key under Mac OS X 10.5.7

This commit is contained in:
kervala 2010-10-05 21:29:47 +02:00
parent c7eef505e0
commit 397048420b

View file

@ -38,7 +38,9 @@
-(void)keyDown:(NSEvent*)event
{
#ifdef MAC_OS_X_VERSION_10_6
[[self inputContext] handleEvent:event];
#endif // MAC_OS_X_VERSION_10_6
}
/******************************************************************************/