From 9333504c9f276263d5d8998459a7eb731485f3be Mon Sep 17 00:00:00 2001 From: Mark Anderson Date: Mon, 8 Jun 2015 22:26:11 +0100 Subject: [PATCH] Fix activity quote colour for light theme. --- .../NewsBlur/src/com/newsblur/view/ActivitiesAdapter.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/clients/android/NewsBlur/src/com/newsblur/view/ActivitiesAdapter.java b/clients/android/NewsBlur/src/com/newsblur/view/ActivitiesAdapter.java index 48f0452a7..9b7ae6c2b 100644 --- a/clients/android/NewsBlur/src/com/newsblur/view/ActivitiesAdapter.java +++ b/clients/android/NewsBlur/src/com/newsblur/view/ActivitiesAdapter.java @@ -54,8 +54,7 @@ public class ActivitiesAdapter extends ArrayAdapter { if (PrefsUtils.isLightThemeSelected(context)) { linkColor = new ForegroundColorSpan(resources.getColor(R.color.linkblue)); contentColor = new ForegroundColorSpan(resources.getColor(R.color.darkgray)); - // TODO - quoteColor = new ForegroundColorSpan(resources.getColor(R.color.darkgray)); + quoteColor = new ForegroundColorSpan(resources.getColor(R.color.midgray)); } else { linkColor = new ForegroundColorSpan(resources.getColor(R.color.dark_linkblue)); contentColor = new ForegroundColorSpan(resources.getColor(R.color.white));