diff options
| author | 2017-08-08 10:48:47 +0000 | |
|---|---|---|
| committer | 2017-08-08 10:48:47 +0000 | |
| commit | 6e4de6ccdf0c0fffa191acf05775d6f87c889d51 (patch) | |
| tree | e6e871fafcc852bd15cf8cda9c96d8e24222fdc2 | |
| parent | 93bf6200ebd94e93038fbc659276da38d24a951e (diff) | |
| parent | 97486d25485639f844a07bb6b3ffb02abedc414c (diff) | |
Merge "ScrimController: Wait with clearing wakup animation until done" into oc-dr1-dev
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/phone/ScrimController.java | 2 |
1 files changed, 1 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 479b94546e14..1d6448094132 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/ScrimController.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/ScrimController.java @@ -543,7 +543,7 @@ public class ScrimController implements ViewTreeObserver.OnPreDrawListener, mKeyguardFadingOutInProgress = false; mAnimatingDozeUnlock = false; } - if (mWakingUpFromAodAnimationRunning) { + if (mWakingUpFromAodAnimationRunning && !mDeferFinishedListener) { mWakingUpFromAodAnimationRunning = false; mWakingUpFromAodInProgress = false; } |