diff --git a/Sources/Addons/BottomSheet/Interaction/BottomSheetInteractionController.swift b/Sources/Addons/BottomSheet/Interaction/BottomSheetInteractionController.swift index c40ea9fe..c9f74d24 100644 --- a/Sources/Addons/BottomSheet/Interaction/BottomSheetInteractionController.swift +++ b/Sources/Addons/BottomSheet/Interaction/BottomSheetInteractionController.swift @@ -207,7 +207,10 @@ extension BottomSheetInteractionController: UIGestureRecognizerDelegate { } guard let scrollView = otherGestureRecognizer.view as? UIScrollView else { - return true + if otherGestureRecognizer is UITapGestureRecognizer { + return true + } + return false } guard !scrollView.canScrollHorizontally else {