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

Commit dbf69e46 authored by Doris Liu's avatar Doris Liu
Browse files

Exclude delay animation from getChildAnimations() list

Bug: 22975427
Change-Id: I8bd9a51f0a886873346d77e9452662301a7c0363
parent 38b45207
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -228,8 +228,10 @@ public final class AnimatorSet extends Animator {
        int size = mNodes.size();
        for (int i = 0; i < size; i++) {
            Node node = mNodes.get(i);
            if (node != mRootNode) {
                childList.add(node.mAnimation);
            }
        }
        return childList;
    }