Skip to content

Commit

Permalink
Update GestureHandlerOrchestrator.java
Browse files Browse the repository at this point in the history
Apple patch from software-mansion#1089
  • Loading branch information
aliceathens authored Aug 14, 2020
1 parent a2f2186 commit d32f95d
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,9 @@ private void cancelAll() {
}

private void deliverEventToGestureHandler(GestureHandler handler, MotionEvent event) {
if (handler == null) {
return;
}
if (!isViewAttachedUnderWrapper(handler.getView())) {
handler.cancel();
return;
Expand Down

0 comments on commit d32f95d

Please sign in to comment.