Fix error with vertical translation of quote cutout projection.

This commit is contained in:
Alex Hart 2021-08-18 09:08:19 -03:00
parent 61aa991d79
commit 921addf4c8

View file

@ -1735,7 +1735,7 @@ public final class ConversationItem extends RelativeLayout implements BindableCo
quoteView != null)
{
bodyBubble.setQuoteViewProjection(quoteView.getProjection(bodyBubble));
projections.add(quoteView.getProjection((ViewGroup) getRootView()).translateX(bodyBubble.getTranslationX()));
projections.add(quoteView.getProjection((ViewGroup) getRootView()).translateX(bodyBubble.getTranslationX() + this.getTranslationX()));
}
return projections;