Re: Modifier keys and panther...
Re: Modifier keys and panther...
- Subject: Re: Modifier keys and panther...
- From: Fabian Lidman <email@hidden>
- Date: Tue, 16 Dec 2003 19:52:31 +0100
-(void)mouseDown:(NSEvent *)event
{
if([event modifierFlags] && NSShiftKeyMask)
[self addToSelection:[self convertPoint:[event
locationInWindow] fromView:nil]];
else
[self selectCardAt:[self convertPoint:[event
locationInWindow] fromView:nil]];
}
It's a long shot, but don't you mean if([event modifierFlags] &
NSShiftKeyMask)?
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.