Fix highlighted bounds of conversation items.

This commit is contained in:
Greyson Parrelli
2021-01-22 22:26:05 -05:00
parent e460973957
commit c5392b8844
5 changed files with 6 additions and 6 deletions

View File

@@ -1068,9 +1068,9 @@ public final class ConversationItem extends RelativeLayout implements BindableCo
private void setGutterSizes(@NonNull MessageRecord current, boolean isGroupThread) {
if (isGroupThread && current.isOutgoing()) {
ViewUtil.setLeftMargin(this, readDimen(R.dimen.conversation_group_left_gutter));
ViewUtil.setPaddingStart(this, readDimen(R.dimen.conversation_group_left_gutter));
} else if (current.isOutgoing()) {
ViewUtil.setLeftMargin(this, readDimen(R.dimen.conversation_individual_left_gutter));
ViewUtil.setPaddingStart(this, readDimen(R.dimen.conversation_individual_left_gutter));
}
}