From f6394395901a079b128e75826233267d2236c8ac Mon Sep 17 00:00:00 2001 From: Nikita Gvozdikov Date: Tue, 29 Oct 2024 10:14:29 +0300 Subject: [PATCH] Fixed bottom sheet gesture recognizer conflicts (#128) --- .../Interaction/BottomSheetInteractionController.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Addons/BottomSheet/Interaction/BottomSheetInteractionController.swift b/Sources/Addons/BottomSheet/Interaction/BottomSheetInteractionController.swift index c40ea9fe..13a825f5 100644 --- a/Sources/Addons/BottomSheet/Interaction/BottomSheetInteractionController.swift +++ b/Sources/Addons/BottomSheet/Interaction/BottomSheetInteractionController.swift @@ -207,7 +207,7 @@ extension BottomSheetInteractionController: UIGestureRecognizerDelegate { } guard let scrollView = otherGestureRecognizer.view as? UIScrollView else { - return true + return otherGestureRecognizer is UITapGestureRecognizer } guard !scrollView.canScrollHorizontally else {