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 6b94ad9fdb
commit 25f97a0f2e

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
}
/******************************************************************************/