Change Mark All as Read icon. Issue #1526

This commit is contained in:
Maurice Parker
2020-01-06 18:07:04 -07:00
parent 7824939c30
commit c0f76d0dbb
6 changed files with 160 additions and 6 deletions

View File

@@ -767,7 +767,7 @@ private extension MasterTimelineViewController {
let localizedMenuText = NSLocalizedString("Mark All as Read in “%@”", comment: "Command")
let title = NSString.localizedStringWithFormat(localizedMenuText as NSString, webFeed.nameForDisplay) as String
let action = UIAction(title: title, image: AppAssets.markAllInFeedAsReadImage) { [weak self] action in
let action = UIAction(title: title, image: AppAssets.markAllAsReadImage) { [weak self] action in
self?.coordinator.markAllAsRead(articles)
}
return action