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

Relates to #8252
fork-5.53.8
Greyson Parrelli 2018-10-04 11:35:19 -07:00
rodzic eb11d5ceda
commit f26c6f890f
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

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