Skip to content

Commit

Permalink
Merge pull request #19 from Remki/PycKamil-memory-leak-fix
Browse files Browse the repository at this point in the history
Update TLYShyNavBarManager.m
  • Loading branch information
Remki committed Mar 9, 2017
2 parents 4b37ed8 + 6ec6491 commit be86a28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TLYShyNavBar/TLYShyNavBarManager.m
Expand Up @@ -277,7 +277,7 @@ - (void)_updateTitleLabelIfNeeded {
__weak typeof(self) weakSelf = self;

void(^tapGestureBlock)(void) = ^{
[weakSelf.scrollView setContentOffset:CGPointMake(self.scrollView.contentOffset.x, -self.scrollView.contentInset.top) animated:YES];
[weakSelf.scrollView setContentOffset:CGPointMake(weakSelf.scrollView.contentOffset.x, -weakSelf.scrollView.contentInset.top) animated:YES];
};

[self.navBarController showAndConfigureTitleLabelWithText:self.extensionView.extensionViewTitle
Expand Down

0 comments on commit be86a28

Please sign in to comment.