diff --git a/MVMCoreUI/Atomic/Organisms/Carousel.swift b/MVMCoreUI/Atomic/Organisms/Carousel.swift index 0ace27ff..4fb7b413 100644 --- a/MVMCoreUI/Atomic/Organisms/Carousel.swift +++ b/MVMCoreUI/Atomic/Organisms/Carousel.swift @@ -436,7 +436,6 @@ extension Carousel: UIScrollViewDelegate { // Disable peaking when dragging. dragging = true - guard !UIAccessibility.isVoiceOverRunning else { return } showPeaking(false) } @@ -444,7 +443,6 @@ extension Carousel: UIScrollViewDelegate { public func scrollViewWillEndDragging(_ scrollView: UIScrollView, withVelocity velocity: CGPoint, targetContentOffset: UnsafeMutablePointer) { dragging = false - guard !UIAccessibility.isVoiceOverRunning else { return } // This is for setting up smooth custom paging. (Since UICollectionView only handles paging based on collection view size and not cell size). Math requires that we are using UICollectionViewFlowLayout. guard (model as? CarouselModel)?.paging == true,