Fixes an issue with boost color

This commit is contained in:
stom79 2017-10-28 19:04:58 +02:00
parent a942b2f39e
commit 2d45f1fc06
1 changed files with 2 additions and 2 deletions

View File

@ -696,8 +696,8 @@ public class StatusListAdapter extends RecyclerView.Adapter implements OnPostAct
}
if( status.isReblogged()|| (status.getReblog() != null && status.getReblog().isReblogged())) {
changeDrawableColor(context, R.drawable.ic_repeat,R.color.boost_icon);
imgReblog = ContextCompat.getDrawable(context, R.drawable.ic_repeat);
changeDrawableColor(context, R.drawable.ic_repeat_boost,R.color.boost_icon);
imgReblog = ContextCompat.getDrawable(context, R.drawable.ic_repeat_boost);
}else {
if( theme == THEME_DARK)
changeDrawableColor(context, R.drawable.ic_repeat,R.color.dark_icon);