EpisodeItem: Don't highlight downloaded items in dark purple

We already show a downloaded episode by a bar on the left side
of the screen, so we can re-use the "fresh" and "normal" colors
(light purple and black) for downloaded episodes.
This commit is contained in:
Thomas Perl 2014-10-28 13:33:56 +01:00
parent 172dabc6be
commit 5e15f13bb3

View file

@ -192,8 +192,6 @@ Item {
return Constants.colors.download;
} else if (episodeItem.opened) {
return Constants.colors.highlight;
} else if (isNew && downloadState == Constants.state.downloaded) {
return Constants.colors.highlight;
} else if (isNew) {
return Constants.colors.fresh;
} else {