diff options
author | pachecosf <austinwim@gmail.com> | 2019-01-17 16:21:34 -0800 |
---|---|---|
committer | pachecosf <austinwim@gmail.com> | 2019-01-17 16:21:34 -0800 |
commit | fd83665970569d44e25a6ac3d199300e75ec6e46 (patch) | |
tree | a18dea40bb0f308f5fa567f8c37df7757d2de0a9 /core/src | |
parent | 7da762b8ea824004f708cbcacc14f6b15aa9d17b (diff) | |
download | AntennaPod-fd83665970569d44e25a6ac3d199300e75ec6e46.zip |
Changed implementation using themeUtils instead
Diffstat (limited to 'core/src')
-rw-r--r-- | core/src/main/java/de/danoeh/antennapod/core/util/ThemeUtils.java | 4 |
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; } } |