From e9731cfe0b6ee55428f6dadfd66cf1ed516601d5 Mon Sep 17 00:00:00 2001 From: Manol Donev Date: Mon, 24 Jun 2019 19:45:07 +0300 Subject: [PATCH] fix(ios-actionbar): parent/child gesture recognition --- tns-core-modules/ui/gestures/gestures.ios.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tns-core-modules/ui/gestures/gestures.ios.ts b/tns-core-modules/ui/gestures/gestures.ios.ts index d0a6a72465..32552c3b14 100644 --- a/tns-core-modules/ui/gestures/gestures.ios.ts +++ b/tns-core-modules/ui/gestures/gestures.ios.ts @@ -17,11 +17,6 @@ class UIGestureRecognizerDelegateImpl extends NSObject implements UIGestureRecog public static ObjCProtocols = [UIGestureRecognizerDelegate]; public gestureRecognizerShouldRecognizeSimultaneouslyWithGestureRecognizer(gestureRecognizer: UIGestureRecognizer, otherGestureRecognizer: UIGestureRecognizer): boolean { - // If both gesture recognizers are of type UITapGestureRecognizer, do not allow - // simultaneous recognition. - if (gestureRecognizer instanceof UITapGestureRecognizer && otherGestureRecognizer instanceof UITapGestureRecognizer) { - return false; - } return true; }