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

Commit b1e80d82 authored by ztenghui's avatar ztenghui
Browse files

Reset the Node status when clone.

b/20457797

Change-Id: I5f1b0e2238fdc4a69a9c09c1e6e0272f7ede3685
parent 041a9e57
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1094,7 +1094,8 @@ public final class AnimatorSet extends Animator {
        public Node clone() {
            try {
                Node node = (Node) super.clone();
                node.animation = (Animator) animation.clone();
                node.animation = animation.clone();
                node.done = false;
                return node;
            } catch (CloneNotSupportedException e) {
               throw new AssertionError();