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
commit c2d1f1c85a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

View File

@ -877,15 +877,15 @@ private extension MasterFeedViewController {
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)
})