Merge pull request #1514 from hartlco/1503-delete-should-be-at-the-bottom-of-the-context-menu

Switch order of context menu items to show delete at the bottom #1503
This commit is contained in:
Maurice Parker
2020-01-02 11:02:37 -07:00
committed by GitHub

View File

@@ -876,16 +876,16 @@ private extension MasterFeedViewController {
if let copyHomePageAction = self.copyHomePageAction(indexPath: indexPath) {
actions.append(copyHomePageAction)
}
if includeDeleteRename {
actions.append(self.deleteAction(indexPath: indexPath))
actions.append(self.renameAction(indexPath: indexPath))
}
if let markAllAction = self.markAllAsReadAction(indexPath: indexPath) {
actions.append(markAllAction)
}
if includeDeleteRename {
actions.append(self.renameAction(indexPath: indexPath))
actions.append(self.deleteAction(indexPath: indexPath))
}
return UIMenu(title: "", children: actions)
})