Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2268bcf0 authored by Selim Cinek's avatar Selim Cinek
Browse files

Fixed a bug where text would still not animate

Bug: 27419215
Change-Id: I8c1cd4d4436ae019875f3e1ae5620c1673c7584e
parent 78f40084
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -46,7 +46,8 @@ public class TextViewTransformState extends TransformState {
            if(TextUtils.equals(otherTvs.mText.getText(), mText.getText())) {
                int ownEllipsized = getEllipsisCount();
                int otherEllipsized = otherTvs.getEllipsisCount();
                return ownEllipsized == otherEllipsized;
                return ownEllipsized == otherEllipsized
                        && mText.getHeight() == otherTvs.mText.getHeight();
            }
        }
        return super.sameAs(otherState);