From 5e15f13bb32423102bd7c9bec5635df0a1d55af3 Mon Sep 17 00:00:00 2001 From: Thomas Perl Date: Tue, 28 Oct 2014 13:33:56 +0100 Subject: [PATCH] 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. --- touch/EpisodeItem.qml | 2 -- 1 file changed, 2 deletions(-) diff --git a/touch/EpisodeItem.qml b/touch/EpisodeItem.qml index 86da2e9..fd6ebca 100644 --- a/touch/EpisodeItem.qml +++ b/touch/EpisodeItem.qml @@ -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 {