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

Commit 8180d6db authored by Alan Viverette's avatar Alan Viverette Committed by Android Git Automerger
Browse files

am c6c243bf: Merge "Propagate first call to DrawableContainer.setAlpha() to children"

* commit 'c6c243bf':
  Propagate first call to DrawableContainer.setAlpha() to children
parents 8a6e7054 c6c243bf
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -120,9 +120,8 @@ public class DrawableContainer extends Drawable implements Drawable.Callback {

    @Override
    public void setAlpha(int alpha) {
        if (!mHasAlpha || mAlpha != alpha) {
            mHasAlpha = true;

        if (mAlpha != alpha) {
            mAlpha = alpha;
            if (mCurrDrawable != null) {
                if (mEnterAnimationEnd == 0) {