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:
commit
c2d1f1c85a
@ -876,16 +876,16 @@ private extension MasterFeedViewController {
|
|||||||
if let copyHomePageAction = self.copyHomePageAction(indexPath: indexPath) {
|
if let copyHomePageAction = self.copyHomePageAction(indexPath: indexPath) {
|
||||||
actions.append(copyHomePageAction)
|
actions.append(copyHomePageAction)
|
||||||
}
|
}
|
||||||
|
|
||||||
if includeDeleteRename {
|
|
||||||
actions.append(self.deleteAction(indexPath: indexPath))
|
|
||||||
actions.append(self.renameAction(indexPath: indexPath))
|
|
||||||
}
|
|
||||||
|
|
||||||
if let markAllAction = self.markAllAsReadAction(indexPath: indexPath) {
|
if let markAllAction = self.markAllAsReadAction(indexPath: indexPath) {
|
||||||
actions.append(markAllAction)
|
actions.append(markAllAction)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if includeDeleteRename {
|
||||||
|
actions.append(self.renameAction(indexPath: indexPath))
|
||||||
|
actions.append(self.deleteAction(indexPath: indexPath))
|
||||||
|
}
|
||||||
|
|
||||||
return UIMenu(title: "", children: actions)
|
return UIMenu(title: "", children: actions)
|
||||||
|
|
||||||
})
|
})
|
||||||
|
Loading…
x
Reference in New Issue
Block a user