diff options
author | Sven Gothel <[email protected]> | 2010-04-24 19:39:59 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-04-24 19:39:59 +0200 |
commit | 0715cdc7d978db00c15b9a79cc21af8fd466174b (patch) | |
tree | 4a155f45045494d77eea3d810d96802a80e47634 /src/newt/native/NewtMacWindow.m | |
parent | 6e273ec07af21ad3c2a1b50fece9f46a3cc92658 (diff) |
NEWT: Add missing return in recursive lock; Add MacOSX EVENT_KEY_TYPED
Diffstat (limited to 'src/newt/native/NewtMacWindow.m')
-rwxr-xr-x | src/newt/native/NewtMacWindow.m | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/newt/native/NewtMacWindow.m b/src/newt/native/NewtMacWindow.m index 3d8d32a40..d8d59a7af 100755 --- a/src/newt/native/NewtMacWindow.m +++ b/src/newt/native/NewtMacWindow.m @@ -242,6 +242,7 @@ static jint mods2JavaMods(NSUInteger mods) - (void) keyUp: (NSEvent*) theEvent { [self sendKeyEvent: theEvent eventType: EVENT_KEY_RELEASED]; + [self sendKeyEvent: theEvent eventType: EVENT_KEY_TYPED]; } - (void) sendMouseEvent: (NSEvent*) event eventType: (jint) evType |