Animate Select Feed context menu result. Issue #1220

This commit is contained in:
Maurice Parker
2019-10-31 20:55:08 -05:00
parent ebed17ed2f
commit b78b996e88
3 changed files with 21 additions and 11 deletions

View File

@@ -586,7 +586,8 @@ private extension MasterTimelineViewController {
let title = NSLocalizedString("Select Feed", comment: "Select Feed")
let action = UIAction(title: title, image: AppAssets.openInSidebarImage) { [weak self] action in
self?.coordinator.discloseFeed(feed)
self?.coordinator.selectFeed(nil, animated: true)
self?.coordinator.discloseFeed(feed, animated: true)
}
return action
}
@@ -596,7 +597,8 @@ private extension MasterTimelineViewController {
let title = NSLocalizedString("Select Feed", comment: "Select Feed")
let action = UIAlertAction(title: title, style: .default) { [weak self] action in
self?.coordinator.discloseFeed(feed)
self?.coordinator.selectFeed(nil, animated: true)
self?.coordinator.discloseFeed(feed, animated: true)
completionHandler(true)
}
return action