diff --git a/iOS/AppDelegate.swift b/iOS/AppDelegate.swift index 69cb07811..da8995f38 100644 --- a/iOS/AppDelegate.swift +++ b/iOS/AppDelegate.swift @@ -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] } } diff --git a/iOS/SceneDelegate.swift b/iOS/SceneDelegate.swift index f3c06e376..dc496dff8 100644 --- a/iOS/SceneDelegate.swift +++ b/iOS/SceneDelegate.swift @@ -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 }