Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a67c58f4 authored by Selim Cinek's avatar Selim Cinek Committed by android-build-merger
Browse files

Merge "Fixed the padding when the sender name was empty" into pi-dev am: 4e9bdcdc

am: 0e765611

Change-Id: I8a12fec73778a0a088ae79b322043c8d9088bdb2
parents a828ffbc 0e765611
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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();
    }