Skip to content

Commit

Permalink
Minor fix: scrollToTop gesture should be YES by default.
Browse files Browse the repository at this point in the history
  • Loading branch information
Xenofex committed Jan 17, 2012
1 parent 0df9820 commit 18998eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion StreamView/EKStreamView.m
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ - (BOOL)scrollViewShouldScrollToTop:(UIScrollView *)scrollView
if ([streamView.delegate respondsToSelector:@selector(scrollViewShouldScrollToTop:)])
return [streamView.delegate scrollViewShouldScrollToTop:streamView];
else
return NO;
return YES;
}

- (void)scrollViewDidScrollToTop:(UIScrollView *)scrollView
Expand Down

0 comments on commit 18998eb

Please sign in to comment.