We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ecf07f commit 8722075Copy full SHA for 8722075
tns-core-modules/ui/gestures/gestures.ios.ts
@@ -17,11 +17,6 @@ class UIGestureRecognizerDelegateImpl extends NSObject implements UIGestureRecog
17
public static ObjCProtocols = [UIGestureRecognizerDelegate];
18
19
public gestureRecognizerShouldRecognizeSimultaneouslyWithGestureRecognizer(gestureRecognizer: UIGestureRecognizer, otherGestureRecognizer: UIGestureRecognizer): boolean {
20
- // If both gesture recognizers are of type UITapGestureRecognizer, do not allow
21
- // simultaneous recognition.
22
- if (gestureRecognizer instanceof UITapGestureRecognizer && otherGestureRecognizer instanceof UITapGestureRecognizer) {
23
- return false;
24
- }
25
return true;
26
}
27
0 commit comments