diff --git a/MVMCoreUI/Atomic/Organisms/Carousel/Carousel.swift b/MVMCoreUI/Atomic/Organisms/Carousel/Carousel.swift index f84bdfc5..c48e5d80 100644 --- a/MVMCoreUI/Atomic/Organisms/Carousel/Carousel.swift +++ b/MVMCoreUI/Atomic/Organisms/Carousel/Carousel.swift @@ -111,7 +111,7 @@ open class Carousel: View { /// Updates if the pager is visible or not. private func updatePagerVisibility() { guard let pagingView = pagingView else { return } - let shouldHidePager = collectionView.contentSize.width < bounds.width + let shouldHidePager = ((molecules?.count ?? 0) < 2) && (collectionView.contentSize.width < bounds.width) if (shouldHidePager && !pagingView.isHidden) || (!shouldHidePager && pagingView.isHidden) { pagingView.isHidden = shouldHidePager pagingBottomPin?.isActive = !shouldHidePager