Fix error with vertical translation of quote cutout projection.
This commit is contained in:
parent
61aa991d79
commit
921addf4c8
1 changed files with 1 additions and 1 deletions
|
@ -1735,7 +1735,7 @@ public final class ConversationItem extends RelativeLayout implements BindableCo
|
||||||
quoteView != null)
|
quoteView != null)
|
||||||
{
|
{
|
||||||
bodyBubble.setQuoteViewProjection(quoteView.getProjection(bodyBubble));
|
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;
|
return projections;
|
||||||
|
|
Loading…
Add table
Reference in a new issue