From cf674d67b1cc7daa3a97d03a2247add026f4cf40 Mon Sep 17 00:00:00 2001 From: Maurice Parker Date: Sat, 27 Jul 2019 14:36:01 -0500 Subject: [PATCH] Show no selection when timeline is selected in Three Panel Mode --- iOS/AppCoordinator.swift | 7 +++++++ iOS/MasterTimeline/MasterTimelineViewController.swift | 1 + 2 files changed, 8 insertions(+) diff --git a/iOS/AppCoordinator.swift b/iOS/AppCoordinator.swift index 45ebe877a..fa31901a2 100644 --- a/iOS/AppCoordinator.swift +++ b/iOS/AppCoordinator.swift @@ -452,6 +452,13 @@ class AppCoordinator: NSObject, UndoableCommandRunner { currentMasterIndexPath = indexPath navControllerForTimeline().pushViewController(masterTimelineViewController!, animated: true) } + + if isThreePanelMode { + let systemMessageViewController = UIStoryboard.main.instantiateController(ofType: SystemMessageViewController.self) + let targetSplitController = targetSplitForDetail() + let controller = addNavControllerIfNecessary(systemMessageViewController, split: targetSplitController, showBackButton: false) + targetSplitController.showDetailViewController(controller, sender: self) + } } func selectArticle(_ indexPath: IndexPath) { diff --git a/iOS/MasterTimeline/MasterTimelineViewController.swift b/iOS/MasterTimeline/MasterTimelineViewController.swift index 2965d4e02..ae4a07df5 100644 --- a/iOS/MasterTimeline/MasterTimelineViewController.swift +++ b/iOS/MasterTimeline/MasterTimelineViewController.swift @@ -352,6 +352,7 @@ private extension MasterTimelineViewController { title = coordinator.timelineName navigationController?.title = coordinator.timelineName + tableView.selectRow(at: nil, animated: false, scrollPosition: .top) if coordinator.articles.count > 0 { tableView.scrollToRow(at: IndexPath(row: 0, section: 0), at: .top, animated: false) }