Skip to content

Commit f664f27

Browse files
author
Andrzej Antoni Kwaśniewski
committed
gesture handlers not awaiting
1 parent 5e50a8f commit f664f27

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/react-native-gesture-handler/android/src/main/java/com/swmansion/gesturehandler/core/GestureHandlerOrchestrator.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ class GestureHandlerOrchestrator(
6262
action == MotionEvent.ACTION_CANCEL ||
6363
action == MotionEvent.ACTION_HOVER_EXIT
6464
) {
65-
if (awaitingHandlers.isEmpty() && rootView is RootView) {
65+
if (gestureHandlers.isEmpty() && rootView is RootView) {
6666
rootView.onChildEndedNativeGesture(rootView, event)
6767
}
6868
}

0 commit comments

Comments
 (0)