Changed implementation using themeUtils instead

This commit is contained in:
pachecosf 2019-01-17 16:21:34 -08:00
parent 7da762b8ea
commit fd83665970
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}
}