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

Commit 827b8ada authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Fix bug skipping certain animations from ending" into ub-launcher3-qt-dev

parents 758be45b 41d3a2a1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -250,7 +250,7 @@ public final class ContentFillItemAnimator extends SimpleItemAnimator {
            }
            mPendingAnims.remove(i);
        }
        for (int i = 0; i < mRunningAnims.size(); i++) {
        for (int i = mRunningAnims.size() - 1; i >= 0; i--) {
            ObjectAnimator anim = mRunningAnims.get(i);
            anim.end();
        }