Remove title from timeline back button. Issue #1319

This commit is contained in:
Maurice Parker
2019-11-19 18:16:03 -06:00
parent 189995e6c7
commit 985cef6b49
2 changed files with 6 additions and 3 deletions

View File

@@ -72,8 +72,8 @@ class MasterTimelineViewController: UITableViewController, UndoableCommandRunner
applyChanges(animated: false)
// Set the bar button item so that it doesn't show on the article view
navigationItem.backBarButtonItem = UIBarButtonItem()
navigationItem.backBarButtonItem = UIBarButtonItem(title: "", style: .plain, target: nil, action: nil)
// Restore the scroll position if we have one stored
if let restoreIndexPath = coordinator.timelineMiddleIndexPath {
tableView.scrollToRow(at: restoreIndexPath, at: .middle, animated: false)