summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpachecosf <austinwim@gmail.com>2019-01-17 16:21:34 -0800
committerpachecosf <austinwim@gmail.com>2019-01-17 16:21:34 -0800
commitfd83665970569d44e25a6ac3d199300e75ec6e46 (patch)
treea18dea40bb0f308f5fa567f8c37df7757d2de0a9
parent7da762b8ea824004f708cbcacc14f6b15aa9d17b (diff)
downloadAntennaPod-fd83665970569d44e25a6ac3d199300e75ec6e46.zip
Changed implementation using themeUtils instead
-rw-r--r--core/src/main/java/de/danoeh/antennapod/core/util/ThemeUtils.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/main/java/de/danoeh/antennapod/core/util/ThemeUtils.java b/core/src/main/java/de/danoeh/antennapod/core/util/ThemeUtils.java
index 7f6d2e01a..dd03f0176 100644
--- a/core/src/main/java/de/danoeh/antennapod/core/util/ThemeUtils.java
+++ b/core/src/main/java/de/danoeh/antennapod/core/util/ThemeUtils.java
@@ -39,7 +39,7 @@ public class ThemeUtils {
return R.color.highlight_light;
} else {
Log.e(TAG,
- "getSelectionBackgroundColor could not match the current theme to any color!");
+ "getSelectionDrawerActivatedColor could not match the current theme to any color!");
return R.color.highlight_light;
}
@@ -55,7 +55,7 @@ public class ThemeUtils {
return R.color.primary_light;
} else {
Log.e(TAG,
- "getSelectionBackgroundColor could not match the current theme to any color!");
+ "getSelectionDrawerNotActivatedColor could not match the current theme to any color!");
return R.color.highlight_light;
}
}