Commit: fc2b6a2b9d749c7a05c48ee2a423570eb3b9f3b6
Author: Jens Verwiebe
Date:   Wed Aug 13 15:32:35 2014 +0200
Branches: master
https://developer.blender.org/rBfc2b6a2b9d749c7a05c48ee2a423570eb3b9f3b6

OSX: fix paranthesis in last commit

===================================================================

M       intern/ghost/intern/GHOST_SystemCocoa.mm

===================================================================

diff --git a/intern/ghost/intern/GHOST_SystemCocoa.mm 
b/intern/ghost/intern/GHOST_SystemCocoa.mm
index 3bef63a..6fefb6a 100644
--- a/intern/ghost/intern/GHOST_SystemCocoa.mm
+++ b/intern/ghost/intern/GHOST_SystemCocoa.mm
@@ -739,7 +739,7 @@ bool GHOST_SystemCocoa::processEvents(bool waitForEvent)
                                // For some reason NSApp is swallowing the key 
up events when modifier
                                // key is pressed, even if there seems to be no 
apparent reason to do
                                // so, as a workaround we always handle these 
up events.
-                               if ([event type] == NSKeyUp && (([event 
modifierFlags] & NSCommandKeyMask) || [event modifierFlags] & 
NSAlternateKeyMask))
+                               if ([event type] == NSKeyUp && (([event 
modifierFlags] & NSCommandKeyMask) || ([event modifierFlags] & 
NSAlternateKeyMask)))
                                        handleKeyEvent(event);
 
                                [NSApp sendEvent:event];

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
http://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to