Remove context menu titles as they didn't provide any additional context
This commit is contained in:
parent
3245223b24
commit
6087951824
@ -678,8 +678,7 @@ private extension MasterFeedViewController {
|
|||||||
actions.append(self.renameAction(indexPath: indexPath))
|
actions.append(self.renameAction(indexPath: indexPath))
|
||||||
}
|
}
|
||||||
|
|
||||||
let feedMsg = NSLocalizedString("Feed Menu", comment: "Feed Menu")
|
return UIMenu(title: "", children: actions)
|
||||||
return UIMenu(title: feedMsg, children: actions)
|
|
||||||
|
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -694,8 +693,7 @@ private extension MasterFeedViewController {
|
|||||||
actions.append(self.deleteAction(indexPath: indexPath))
|
actions.append(self.deleteAction(indexPath: indexPath))
|
||||||
actions.append(self.renameAction(indexPath: indexPath))
|
actions.append(self.renameAction(indexPath: indexPath))
|
||||||
|
|
||||||
let feedMsg = NSLocalizedString("Folder Menu", comment: "Folder Menu")
|
return UIMenu(title: "", children: actions)
|
||||||
return UIMenu(title: feedMsg, children: actions)
|
|
||||||
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
@ -202,8 +202,7 @@ class MasterTimelineViewController: UITableViewController, UndoableCommandRunner
|
|||||||
actions.append(action)
|
actions.append(action)
|
||||||
}
|
}
|
||||||
|
|
||||||
let title = NSLocalizedString("Timeline Menu", comment: "Timeline Menu")
|
return UIMenu(title: "", children: actions)
|
||||||
return UIMenu(title: title, children: actions)
|
|
||||||
|
|
||||||
})
|
})
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user