diff --git a/Shared/Resources/SidebarKeyboardShortcuts.plist b/Shared/Resources/SidebarKeyboardShortcuts.plist index f34f1d8d7..9ad1d2c5f 100644 --- a/Shared/Resources/SidebarKeyboardShortcuts.plist +++ b/Shared/Resources/SidebarKeyboardShortcuts.plist @@ -10,7 +10,7 @@ title - Collapse Selected Rows + Collapse Selected Row key , action @@ -18,7 +18,7 @@ title - Expand Selected Rows + Expand Selected Row key . action diff --git a/iOS/MasterFeed/MasterFeedViewController.swift b/iOS/MasterFeed/MasterFeedViewController.swift index ed86b3da7..36f352fd9 100644 --- a/iOS/MasterFeed/MasterFeedViewController.swift +++ b/iOS/MasterFeed/MasterFeedViewController.swift @@ -398,6 +398,12 @@ class MasterFeedViewController: UITableViewController, UndoableCommandRunner { coordinator.showBrowserForCurrentFeed() } + @objc override func delete(_ sender: Any?) { + if let indexPath = coordinator.currentFeedIndexPath { + delete(indexPath: indexPath) + } + } + // MARK: API func updateFeedSelection() {