Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--intern/ghost/intern/GHOST_WindowCocoa.mm5
1 files changed, 3 insertions, 2 deletions
diff --git a/intern/ghost/intern/GHOST_WindowCocoa.mm b/intern/ghost/intern/GHOST_WindowCocoa.mm
index 9e01fdbf332..b8d52a2b4ff 100644
--- a/intern/ghost/intern/GHOST_WindowCocoa.mm
+++ b/intern/ghost/intern/GHOST_WindowCocoa.mm
@@ -283,6 +283,8 @@ extern "C" {
// The trick to prevent Cocoa from complaining (beeping)
- (void)keyDown:(NSEvent *)event
{
+ systemCocoa->handleKeyEvent(event);
+
/* Start or continue composing? */
if ([[event characters] length] == 0 ||
[[event charactersIgnoringModifiers] length] == 0 ||
@@ -297,9 +299,8 @@ extern "C" {
[self interpretKeyEvents:events]; // calls insertText
[events removeObject:event];
[events release];
+ return;
}
-
- systemCocoa->handleKeyEvent(event);
}
- (void)keyUp:(NSEvent *)event