mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
Use correct icons on timeline swipe for unread and starred
This commit is contained in:
@@ -182,7 +182,7 @@ class MasterTimelineViewController: UITableViewController, UndoableCommandRunner
|
||||
completionHandler(true)
|
||||
}
|
||||
|
||||
readAction.image = AppAssets.circleClosedImage
|
||||
readAction.image = article.status.read ? AppAssets.circleClosedImage : AppAssets.circleOpenImage
|
||||
readAction.backgroundColor = AppAssets.primaryAccentColor
|
||||
|
||||
// Set up the star action
|
||||
@@ -195,7 +195,7 @@ class MasterTimelineViewController: UITableViewController, UndoableCommandRunner
|
||||
completionHandler(true)
|
||||
}
|
||||
|
||||
starAction.image = AppAssets.starClosedImage
|
||||
starAction.image = article.status.starred ? AppAssets.starOpenImage : AppAssets.starClosedImage
|
||||
starAction.backgroundColor = AppAssets.starColor
|
||||
|
||||
// Set up the read action
|
||||
|
||||
Reference in New Issue
Block a user