From f930eca9bba2f66707fcfe0798ac8907f12f989b Mon Sep 17 00:00:00 2001 From: Maurice Parker Date: Sat, 1 Oct 2022 05:12:52 -0500 Subject: [PATCH] Fix lost deselect animation on the Timeline --- iOS/SceneCoordinator.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iOS/SceneCoordinator.swift b/iOS/SceneCoordinator.swift index c291320da..79fe5be0f 100644 --- a/iOS/SceneCoordinator.swift +++ b/iOS/SceneCoordinator.swift @@ -1349,7 +1349,7 @@ extension SceneCoordinator: UINavigationControllerDelegate { // This happens when we are going to the next unread and we need to grab another timeline to continue. The // ArticleViewController will be pushed, but we will briefly show the Timeline. Don't clear things out when that happens. if viewController === masterTimelineViewController && lastMainControllerToAppear == .article { - selectArticle(nil) + selectArticle(nil, animations: [.scroll, .select, .navigation]) // Restore any bars hidden by the article controller showStatusBar()