diff --git a/Tusker/Screens/Large Image/Transitions/LargeImageInteractionController.swift b/Tusker/Screens/Large Image/Transitions/LargeImageInteractionController.swift index 0cac25c1..23d51f5a 100644 --- a/Tusker/Screens/Large Image/Transitions/LargeImageInteractionController.swift +++ b/Tusker/Screens/Large Image/Transitions/LargeImageInteractionController.swift @@ -19,7 +19,11 @@ class LargeImageInteractionController: UIPercentDrivenInteractiveTransition { init(viewController: UIViewController) { super.init() self.viewController = viewController - viewController.view.addGestureRecognizer(UIPanGestureRecognizer(target: self, action: #selector(handleGesture(_:)))) + let panRecognizer = UIPanGestureRecognizer(target: self, action: #selector(handleGesture(_:))) + if #available(iOS 13.4, *) { + panRecognizer.allowedScrollTypesMask = .all + } + viewController.view.addGestureRecognizer(panRecognizer) } @objc func handleGesture(_ recognizer: UIPanGestureRecognizer) {