Merge "Fixed the padding when the sender name was empty" into pi-dev
This commit is contained in:
@@ -147,7 +147,7 @@ public class MessagingGroup extends LinearLayout implements MessagingLinearLayou
|
||||
setAvatar(sender.getIcon());
|
||||
}
|
||||
mAvatarView.setVisibility(VISIBLE);
|
||||
mSenderName.setVisibility(VISIBLE);
|
||||
mSenderName.setVisibility(TextUtils.isEmpty(nameOverride) ? GONE : VISIBLE);
|
||||
mTextColor = getNormalTextColor();
|
||||
mSendingTextColor = calculateSendingTextColor();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user