diff options
| author | 2017-07-31 16:55:01 +0000 | |
|---|---|---|
| committer | 2017-07-31 16:55:01 +0000 | |
| commit | dca692c68f0a524e4b7f0768e6442f7e6034a37e (patch) | |
| tree | 92b6397a711ab4a7caf4c4b16db0e2943093d817 | |
| parent | e8315ab4d7b4621cd2410ffa1c074fc0bbb887d9 (diff) | |
| parent | 3bc413bca88b12e3aed1532360e5a26b7e556e04 (diff) | |
Merge "WakeAndUnlock: Make sure blanking is never animated" into oc-dr1-dev am: cbab3edc3e
am: 3bc413bca8
Change-Id: I07022fc1006f3e9470791cf4f51000315139f899
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/phone/ScrimController.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/phone/ScrimController.java b/packages/SystemUI/src/com/android/systemui/statusbar/phone/ScrimController.java index 5b2b50bfe2f3..f9dd8bf5b202 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/ScrimController.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/ScrimController.java @@ -379,7 +379,8 @@ public class ScrimController implements ViewTreeObserver.OnPreDrawListener, setScrimBehindAlpha(0f); } else if (mWakeAndUnlocking) { // During wake and unlock, we first hide everything behind a black scrim, which then - // gets faded out from animateKeyguardFadingOut. + // gets faded out from animateKeyguardFadingOut. This must never be animated. + mAnimateChange = false; if (mDozing) { setScrimInFrontAlpha(0f); setScrimBehindAlpha(1f); |