diff options
Diffstat (limited to 'src/eu/siacs/conversations/ui/ConversationFragment.java')
-rw-r--r-- | src/eu/siacs/conversations/ui/ConversationFragment.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/eu/siacs/conversations/ui/ConversationFragment.java b/src/eu/siacs/conversations/ui/ConversationFragment.java index 3796f83e..61843b82 100644 --- a/src/eu/siacs/conversations/ui/ConversationFragment.java +++ b/src/eu/siacs/conversations/ui/ConversationFragment.java @@ -333,7 +333,7 @@ public class ConversationFragment extends Fragment { boolean showPhoneSelfContactPicture = sharedPref.getBoolean( "show_phone_selfcontact_picture", true); - return UIHelper.getSelfContactPicture(conversation.getAccount(), 200, + return UIHelper.getSelfContactPicture(conversation.getAccount(), 48, showPhoneSelfContactPicture, getActivity()); } @@ -616,9 +616,9 @@ public class ConversationFragment extends Fragment { } else { Bitmap bm; if (contact != null){ - bm = UIHelper.getContactPicture(contact, 200, context); + bm = UIHelper.getContactPicture(contact, 48, context, false); } else { - bm = UIHelper.getContactPicture(name, 200, context); + bm = UIHelper.getContactPicture(name, 48, context, false); } bitmaps.put(name, bm); return bm; |