Cog/Utils/ClickField.m
2007-07-11 01:20:32 +00:00

17 lines
262 B
Objective-C

#import "ClickField.h"
@implementation ClickField
- (BOOL)acceptsFirstMouse:(NSEvent *)theEvent {
return YES;
}
- (void)mouseDown:(NSEvent *)theEvent
{
if([theEvent type] == NSLeftMouseDown)
{
[self sendAction:[self action] to:[self target]];
}
}
@end