Fix non-contact icon in recipient preferences being too small.

Relates to #8252
pull/1/head
Greyson Parrelli 6 years ago
parent eb11d5ceda
commit f26c6f890f

@ -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() {

Loading…
Cancel
Save