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

Commit 3b866bee authored by Jorim Jaggi's avatar Jorim Jaggi
Browse files

Make sure endClosing doesn't get called too early

Bug: 22196478
Bug: 22184101
Change-Id: I3488c40b74a080efbba9b1544f9709f7e509988b
parent 1aaad610
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -834,8 +834,10 @@ public abstract class PanelView extends FrameLayout {
            }
        } else if (!isFullyCollapsed() && !mTracking && !mClosing) {
            cancelHeightAnimator();
            mClosing = true;
            notifyExpandingStarted();

            // Set after notifyExpandingStarted, as notifyExpandingStarted resets the closing state.
            mClosing = true;
            if (delayed) {
                mNextCollapseSpeedUpFactor = speedUpFactor;
                postDelayed(mFlingCollapseRunnable, 120);