diff options
author | 2018-04-03 17:07:03 +0000 | |
---|---|---|
committer | 2018-04-03 17:07:03 +0000 | |
commit | 3e57c9f52573fdf15414fdda50bd988776e8ea3d (patch) | |
tree | e7c58d26a9a58ab40af51be5f5f2ee83095b6349 | |
parent | 7ee86d1dbce8afa70ff699c7a8414b160aba8b74 (diff) | |
parent | ec46f3845a5653b6fd10188ebfd141ef5587bf24 (diff) |
Merge "Do not run peek animation when keyguard is fading" into pi-dev
-rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/phone/PanelView.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/phone/PanelView.java b/packages/SystemUI/src/com/android/systemui/statusbar/phone/PanelView.java index 04cb620be9d3..304a4997ae25 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/PanelView.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/PanelView.java @@ -488,7 +488,7 @@ public abstract class PanelView extends FrameLayout { mUpdateFlingVelocity = vel; } } else if (mPanelClosedOnDown && !mHeadsUpManager.hasPinnedHeadsUp() && !mTracking - && !mStatusBar.isBouncerShowing()) { + && !mStatusBar.isBouncerShowing() && !mStatusBar.isKeyguardFadingAway()) { long timePassed = SystemClock.uptimeMillis() - mDownTime; if (timePassed < ViewConfiguration.getLongPressTimeout()) { // Lets show the user that he can actually expand the panel |