We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For commit 1d53151
It turned out that below cause the problem:
if !_dataNotSet && _dragEnabled && (!self.hasNoDragOffset || !self.isFullyZoomedOut || self.isHighlightPerDragEnabled) { _isDragging = true ... }
Why || self.isHighlightPerDragEnabled here? It will make the whole if condition always true and lead _isDragging to true. then
|| self.isHighlightPerDragEnabled
else if (recognizer.state == UIGestureRecognizerState.Changed) { if (_isDragging) { ... }
will always goes in isDragging, not triggering the highlight code path.
The text was updated successfully, but these errors were encountered:
Have a fix ready. Correct me if I misunderstood or missed anything
Sorry, something went wrong.
d389c4f
No branches or pull requests
For commit 1d53151
It turned out that below cause the problem:
Why
|| self.isHighlightPerDragEnabled
here? It will make the whole if condition always true and lead _isDragging to true. thenwill always goes in isDragging, not triggering the highlight code path.
The text was updated successfully, but these errors were encountered: