Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions tns-core-modules/ui/gestures/gestures.ios.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down