mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
fixing the like dislike icons
This commit is contained in:
parent
7c12225e16
commit
3adbf695af
1 changed files with 2 additions and 2 deletions
|
@ -452,11 +452,11 @@
|
|||
cell.storyDate.text = [story objectForKey:@"short_parsed_date"];
|
||||
int score = [NewsBlurAppDelegate computeStoryScore:[story objectForKey:@"intelligence"]];
|
||||
if (score > 0) {
|
||||
cell.storyUnreadIndicator.image = [UIImage imageNamed:@"dislike.png"];
|
||||
cell.storyUnreadIndicator.image = [UIImage imageNamed:@"like.png"];
|
||||
} else if (score == 0) {
|
||||
cell.storyUnreadIndicator.image = [UIImage imageNamed:@"bullet_yellow.png"];
|
||||
} else if (score < 0) {
|
||||
cell.storyUnreadIndicator.image = [UIImage imageNamed:@"like.png"];
|
||||
cell.storyUnreadIndicator.image = [UIImage imageNamed:@"dislike.png"];
|
||||
}
|
||||
|
||||
// River view
|
||||
|
|
Loading…
Add table
Reference in a new issue