Remove context menu titles as they didn't provide any additional context

This commit is contained in:
Maurice Parker 2019-08-19 15:49:42 -05:00
parent 3245223b24
commit 6087951824
2 changed files with 3 additions and 6 deletions

View File

@ -678,8 +678,7 @@ private extension MasterFeedViewController {
actions.append(self.renameAction(indexPath: indexPath))
}
let feedMsg = NSLocalizedString("Feed Menu", comment: "Feed Menu")
return UIMenu(title: feedMsg, children: actions)
return UIMenu(title: "", children: actions)
})
@ -694,8 +693,7 @@ private extension MasterFeedViewController {
actions.append(self.deleteAction(indexPath: indexPath))
actions.append(self.renameAction(indexPath: indexPath))
let feedMsg = NSLocalizedString("Folder Menu", comment: "Folder Menu")
return UIMenu(title: feedMsg, children: actions)
return UIMenu(title: "", children: actions)
})
}

View File

@ -202,8 +202,7 @@ class MasterTimelineViewController: UITableViewController, UndoableCommandRunner
actions.append(action)
}
let title = NSLocalizedString("Timeline Menu", comment: "Timeline Menu")
return UIMenu(title: title, children: actions)
return UIMenu(title: "", children: actions)
})