From 0c33f6c496e324d4bb6c650d06cf32cd28e86a2e Mon Sep 17 00:00:00 2001 From: Maurice Parker Date: Wed, 13 Nov 2019 15:41:41 -0600 Subject: [PATCH] Animate disclosing the feed when using Go to Feed. --- iOS/MasterTimeline/MasterTimelineViewController.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/iOS/MasterTimeline/MasterTimelineViewController.swift b/iOS/MasterTimeline/MasterTimelineViewController.swift index 6990a53a4..c1613e66d 100644 --- a/iOS/MasterTimeline/MasterTimelineViewController.swift +++ b/iOS/MasterTimeline/MasterTimelineViewController.swift @@ -594,7 +594,7 @@ private extension MasterTimelineViewController { let title = NSLocalizedString("Go to Feed", comment: "Go to Feed") let action = UIAction(title: title, image: AppAssets.openInSidebarImage) { [weak self] action in - self?.coordinator.discloseFeed(feed, animated: false) + self?.coordinator.discloseFeed(feed, animated: true) } return action } @@ -604,7 +604,7 @@ private extension MasterTimelineViewController { let title = NSLocalizedString("Go to Feed", comment: "Go to Feed") let action = UIAlertAction(title: title, style: .default) { [weak self] action in - self?.coordinator.discloseFeed(feed, animated: false) + self?.coordinator.discloseFeed(feed, animated: true) completionHandler(true) } return action