Fixes background color issue for mentions

This commit is contained in:
stom79 2017-10-30 18:57:59 +01:00
parent 04906e830e
commit 91d30d6c71
1 changed files with 5 additions and 0 deletions

View File

@ -838,6 +838,11 @@ public class StatusListAdapter extends RecyclerView.Adapter implements OnPostAct
context.startActivity(intent);
}
});
if( theme == Helper.THEME_LIGHT){
holder.main_container.setBackgroundResource(R.color.mastodonC3__);
}else {
holder.main_container.setBackgroundResource(R.color.mastodonC1_);
}
}else {
if( theme == Helper.THEME_LIGHT){
if( position == conversationPosition){