Skip to content

Commit

Permalink
Small fix to improve functionality of views inside the content view t…
Browse files Browse the repository at this point in the history
…hat have competing gesture recognizers

Closes #186
  • Loading branch information
LeoNatan committed Dec 7, 2017
1 parent d496fde commit 0c3a88d
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github_changelog_generator
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
issues-wo-labels=false
exclude-labels=duplicate,iOS bug,not a bug,question,user needs help,wontfix
bugs-label=**Fixed Bugs**
enhancement-label=**Enhancements**
issues-label=**Closed Issues**
pr-label=**Merged Pull Requests**
verbose=false
bug-labels=bug
enhancement-labels=enhancement
Original file line number Diff line number Diff line change
Expand Up @@ -572,6 +572,10 @@ - (void)_popupBarPresentationByUserPanGestureHandler_changed:(UIPanGestureRecogn
possibleScrollView.contentOffset = CGPointMake(possibleScrollView.contentOffset.x, _dismissScrollViewStartingContentOffset);
}
}
else
{
return;
}
}

if(_dismissGestureStarted == NO && (resolvedStyle == LNPopupInteractionStyleDrag || _popupControllerState > LNPopupPresentationStateClosed))
Expand Down

0 comments on commit 0c3a88d

Please sign in to comment.