Skip to content

Commit

Permalink
Merge branch 'main' into kve/dequeue-animations-2
Browse files Browse the repository at this point in the history
* main:
  fix: don't cancel touches in view for tap gesture recognizer
  • Loading branch information
kyleve committed Jan 11, 2024
2 parents a4aa1d7 + 96085e5 commit 6dd08b9
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,7 @@ extension ItemCell {
addGestureRecognizer(panGestureRecognizer)
let tapGestureRecognizer = UITapGestureRecognizer(target: self, action: #selector(handleTap))
tapGestureRecognizer.require(toFail: panGestureRecognizer)
tapGestureRecognizer.cancelsTouchesInView = false
addGestureRecognizer(tapGestureRecognizer)

configurations[side] = SwipeConfiguration(
Expand Down

0 comments on commit 6dd08b9

Please sign in to comment.