Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6c3fb465 authored by Jesse Vincent's avatar Jesse Vincent
Browse files

only show the super-condensed layout if the contact picture is not being displayed.

parent f494035e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1809,7 +1809,7 @@ public class MessageListFragment extends SherlockFragment implements OnItemClick
            MessageViewHolder holder = new MessageViewHolder();
            holder.date = (TextView) view.findViewById(R.id.date);
            holder.chip = view.findViewById(R.id.chip);
            if (mPreviewLines == 0) {
            if (mPreviewLines == 0 && mContactsPictureLoader == null) {
                view.findViewById(R.id.preview).setVisibility(View.GONE);
                holder.preview = (TextView) view.findViewById(R.id.sender_compact);
                ViewGroup.LayoutParams params = holder.chip.getLayoutParams();