Remove Refresh shortcut item

This commit is contained in:
Maurice Parker 2019-09-02 16:05:55 -05:00
parent 93b702f170
commit fafb7de868
2 changed files with 1 additions and 7 deletions

View File

@ -210,11 +210,7 @@ private extension AppDelegate {
let addIcon = UIApplicationShortcutIcon(systemImageName: "plus")
let addItem = UIApplicationShortcutItem(type: "com.ranchero.NetNewsWire.ShowAdd", localizedTitle: addTitle, localizedSubtitle: nil, icon: addIcon, userInfo: nil)
let refreshTitle = NSLocalizedString("Refresh", comment: "Refresh")
let refreshIcon = UIApplicationShortcutIcon(systemImageName: "arrow.clockwise")
let refreshItem = UIApplicationShortcutItem(type: "com.ranchero.NetNewsWire.Refresh", localizedTitle: refreshTitle, localizedSubtitle: nil, icon: refreshIcon, userInfo: nil)
UIApplication.shared.shortcutItems = [addItem, searchItem, unreadItem, refreshItem]
UIApplication.shared.shortcutItems = [addItem, searchItem, unreadItem]
}
}

View File

@ -67,8 +67,6 @@ private extension SceneDelegate {
coordinator.showSearch()
case "com.ranchero.NetNewsWire.ShowAdd":
coordinator.showAdd()
case "com.ranchero.NetNewsWire.Refresh":
AccountManager.shared.refreshAll(errorHandler: ErrorHandler.log)
default:
break
}