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

Commit 32a59fd3 authored by Selim Cinek's avatar Selim Cinek
Browse files

Fixed a bug where we might get stuck in a fully expanded statusbar

Bug: 21704050
Change-Id: Ib024a350b9d86f89480aaa9ea279cab81f51524b
parent 47669522
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -2291,6 +2291,10 @@ public class NotificationStackScrollLayout extends ViewGroup

    public void onChildAnimationFinished() {
        requestChildrenUpdate();
        runAnimationFinishedRunnables();
    }

    private void runAnimationFinishedRunnables() {
        for (Runnable runnable : mAnimationFinishedRunnables) {
            runnable.run();
        }
@@ -2348,6 +2352,7 @@ public class NotificationStackScrollLayout extends ViewGroup
        if (mListener != null) {
            mListener.onChildLocationsChanged(this);
        }
        runAnimationFinishedRunnables();
    }

    public void setSpeedBumpView(SpeedBumpView speedBumpView) {