From f26c6f890f33ea9c215f3403ca3aac6d68e88cc9 Mon Sep 17 00:00:00 2001 From: Greyson Parrelli Date: Thu, 4 Oct 2018 11:35:19 -0700 Subject: [PATCH] Fix non-contact icon in recipient preferences being too small. Relates to #8252 --- src/org/thoughtcrime/securesms/recipients/Recipient.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/org/thoughtcrime/securesms/recipients/Recipient.java b/src/org/thoughtcrime/securesms/recipients/Recipient.java index 602b5b921f..4eeeb7acaa 100644 --- a/src/org/thoughtcrime/securesms/recipients/Recipient.java +++ b/src/org/thoughtcrime/securesms/recipients/Recipient.java @@ -426,7 +426,7 @@ public class Recipient implements RecipientModifiedListener { if (isResolving()) return new TransparentContactPhoto(); else if (isGroupRecipient()) return new ResourceContactPhoto(R.drawable.ic_group_white_24dp, R.drawable.ic_group_large); else if (!TextUtils.isEmpty(name)) return new GeneratedContactPhoto(name, R.drawable.ic_profile_default); - else return new ResourceContactPhoto(R.drawable.ic_profile_default); + else return new ResourceContactPhoto(R.drawable.ic_profile_default, R.drawable.ic_person_large); } public synchronized @Nullable ContactPhoto getContactPhoto() {