Skip to content

Commit

Permalink
Fix wrong padding under reactions
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacocococo authored Dec 22, 2024
1 parent cbab92e commit ed5c58b
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,8 @@ public void onBind(EmojiReactionsStatusDisplayItem item) {
if(next!=null && !next.parentID.equals(item.parentID)) next=null;
if(next instanceof ExtendedFooterStatusDisplayItem)
itemView.setPadding(0, 0, 0, V.dp(12));
else
itemView.setPadding(0, 0, 0, 0);
}

private void updateVisibility(boolean hidden, boolean force){
Expand Down

0 comments on commit ed5c58b

Please sign in to comment.