diff --git a/Backlight/AAABacklightView.m b/Backlight/AAABacklightView.m index c75f76b..fa19b02 100644 --- a/Backlight/AAABacklightView.m +++ b/Backlight/AAABacklightView.m @@ -55,4 +55,14 @@ - (void)setRadiusEnabled:(BOOL)enabled [self setNeedsDisplay:YES]; } +/** resolve the problem that the same row lost focus can not be editable under the overlay mode */ +- (NSView *)hitTest:(NSPoint)aPoint +{ + return nil; +} + +- (BOOL)acceptsFirstResponder { + return NO; +} + @end