Skip to content

Commit

Permalink
[Issue #365] Defering to super implementation of hitTest:withEvent: i…
Browse files Browse the repository at this point in the history
…f no link is at point of touch
  • Loading branch information
mattt committed Apr 15, 2014
1 parent 28514af commit 7279652
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions TTTAttributedLabel/TTTAttributedLabel.m
Expand Up @@ -1220,10 +1220,10 @@ - (void)tintColorDidChange {
#endif

- (UIView *)hitTest:(CGPoint)point
withEvent:(__unused UIEvent *)event
withEvent:(UIEvent *)event
{
if (![self linkAtPoint:point]) {
return nil;
return [super hitTest:point withEvent:event];
}

return self;
Expand Down

0 comments on commit 7279652

Please sign in to comment.