# HG changeset patch # User bsmith@81767d24-ef19-dc11-ae90-00e081727c95 # Date 1333770864 0 # Node ID 509effb15e3578291fe5f691da1834961282c84a # Parent 7a9b1189934a79e0ff7896a498c39d31336320fb Ug, missing parenthesis made that last fix misbehave in certain cirucumstances. diff -r 7a9b1189934a -r 509effb15e35 mac/dw.m --- a/mac/dw.m Sat Apr 07 03:11:51 2012 +0000 +++ b/mac/dw.m Sat Apr 07 03:54:24 2012 +0000 @@ -851,7 +851,7 @@ -(NSSize)size { return size; } -(void)mouseDown:(NSEvent *)theEvent { - if(![theEvent modifierFlags] & NSControlKeyMask) + if(!([theEvent modifierFlags] & NSControlKeyMask)) _event_handler(self, theEvent, 3); } -(void)mouseUp:(NSEvent *)theEvent { _event_handler(self, theEvent, 4); }