diff --git a/Sources/Brave/Frontend/Browser/New Tab Page/Sections/BraveNewsSectionProvider.swift b/Sources/Brave/Frontend/Browser/New Tab Page/Sections/BraveNewsSectionProvider.swift index eb2e9b72f67..145ec78ff88 100644 --- a/Sources/Brave/Frontend/Browser/New Tab Page/Sections/BraveNewsSectionProvider.swift +++ b/Sources/Brave/Frontend/Browser/New Tab Page/Sections/BraveNewsSectionProvider.swift @@ -182,7 +182,12 @@ class BraveNewsSectionProvider: NSObject, NTPObservableSectionProvider { func collectionView(_ collectionView: UICollectionView, willDisplay cell: UICollectionViewCell, forItemAt indexPath: IndexPath) { if indexPath.item == 0, let cell = cell as? FeedCardCell { - cell.content.graphicAnimationView.play() + DispatchQueue.main.asyncAfter(deadline: .now() + 0.5) { + // Seems like there is a CoreGraphics glitch somewhere here after we create a new tab it starts + // playing too quickly before the tab tray animation is done, so it doesn't play... possibly a Lottie + // bug + cell.content.graphicAnimationView.play() + } } if let card = dataSource.state.cards?[safe: indexPath.item] { if !viewedCards.contains(card) && collectionView.contentOffset.y > 0 {