fix regression with background color in conv overview

This commit is contained in:
Daniel Gultsch 2018-06-24 18:57:06 +02:00
parent 27a1bdb4b9
commit 9d69b38147
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ public class ConversationAdapter extends RecyclerView.Adapter<ConversationAdapte
if (conversation == ConversationFragment.getConversation(activity)) {
viewHolder.frame.setBackgroundColor(Color.get(activity,R.attr.color_background_tertiary));
} else {
viewHolder.frame.setBackground(null);
viewHolder.frame.setBackgroundColor(Color.get(activity,R.attr.color_background_primary));
}
Message message = conversation.getLatestMessage();