diff --git a/iOS/MasterTimeline/MasterTimelineViewController.swift b/iOS/MasterTimeline/MasterTimelineViewController.swift index 84eda2f49..ccc773a17 100644 --- a/iOS/MasterTimeline/MasterTimelineViewController.swift +++ b/iOS/MasterTimeline/MasterTimelineViewController.swift @@ -508,7 +508,11 @@ private extension MasterTimelineViewController { func updateTitleUnreadCount() { if let unreadCountProvider = coordinator.timelineFetcher as? UnreadCountProvider { - titleView?.unreadCountView.unreadCount = unreadCountProvider.unreadCount + UIView.animate(withDuration: 0.3) { + self.titleView?.unreadCountView.unreadCount = unreadCountProvider.unreadCount + self.titleView?.setNeedsLayout() + self.titleView?.layoutIfNeeded() + } } }