Fix 'see replies' indicator animation in RTL.

This commit is contained in:
Greyson Parrelli 2022-07-01 11:30:25 -04:00
parent b5a99a6b3f
commit f523529338

View file

@ -56,7 +56,7 @@ final class ConversationSwipeAnimationHelper {
private static void updateQuotedIndicatorTransition(@Nullable View quotedIndicator, float dx, float progress, float sign) {
if (quotedIndicator != null) {
quotedIndicator.setTranslationX(BUBBLE_INTERPOLATOR.getInterpolation(dx) * sign);
quotedIndicator.setAlpha(QUOTED_ALPHA_INTERPOLATOR.getInterpolation(progress) * sign);
quotedIndicator.setAlpha(QUOTED_ALPHA_INTERPOLATOR.getInterpolation(progress));
}
}