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

Commit 0e765611 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

Change-Id: I4f3e8c54ef31b9ce32a3dcb9bc4f8a4a93dfd0db
parents f8fafdf7 4e9bdcdc
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();
    }