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

Commit b2e09315 authored by Christian Göllner's avatar Christian Göllner Committed by Automerger Merge Worker
Browse files

Merge "Remove behavior that closes the notification/qs panel when tapping on...

Merge "Remove behavior that closes the notification/qs panel when tapping on an empty area." into sc-v2-dev am: f4d5b801

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/16413131

Change-Id: I4dde25df94297b48d8bd60ecf7c1c9be63b7636e
parents abbcf0e6 f4d5b801
Loading
Loading
Loading
Loading
+0 −6
Original line number Diff line number Diff line
@@ -3262,12 +3262,6 @@ public class NotificationPanelViewController extends PanelViewController {
                    mStatusBarStateController.setState(KEYGUARD);
                }
                return true;
            case StatusBarState.SHADE:

                // This gets called in the middle of the touch handling, where the state is still
                // that we are tracking the panel. Collapse the panel after this is done.
                mView.post(mPostCollapseRunnable);
                return false;
            default:
                return true;
        }
+0 −8
Original line number Diff line number Diff line
@@ -928,7 +928,6 @@ public abstract class PanelViewController {

    private void abortAnimations() {
        cancelHeightAnimator();
        mView.removeCallbacks(mPostCollapseRunnable);
        mView.removeCallbacks(mFlingCollapseRunnable);
    }

@@ -1105,13 +1104,6 @@ public abstract class PanelViewController {
        return onMiddleClicked();
    }

    protected final Runnable mPostCollapseRunnable = new Runnable() {
        @Override
        public void run() {
            collapse(false /* delayed */, 1.0f /* speedUpFactor */);
        }
    };

    protected abstract boolean onMiddleClicked();

    protected abstract boolean isDozing();