diff options
author | Matt Pietal <mpietal@google.com> | 2021-05-18 14:05:30 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2021-05-18 14:05:30 +0000 |
commit | 006b3a23c73ba06fd50b747836cf6cc42d414637 (patch) | |
tree | 0f4ce98c09761c09c72e10be8ccb05cd53339f34 /packages/SystemUI/src/com/android/keyguard/AnimatableClockController.java | |
parent | 797ae050c218f2aa0b5c9b308bd7b08a6a1858f2 (diff) | |
parent | acb528f2d738335880eea3257191d1fa67ab5c38 (diff) |
Merge "Don't animate large clock appearance on AOD" into sc-dev
Diffstat (limited to 'packages/SystemUI/src/com/android/keyguard/AnimatableClockController.java')
-rw-r--r-- | packages/SystemUI/src/com/android/keyguard/AnimatableClockController.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/keyguard/AnimatableClockController.java b/packages/SystemUI/src/com/android/keyguard/AnimatableClockController.java index e6ec04b4e391..332de6c6cb40 100644 --- a/packages/SystemUI/src/com/android/keyguard/AnimatableClockController.java +++ b/packages/SystemUI/src/com/android/keyguard/AnimatableClockController.java @@ -170,7 +170,7 @@ public class AnimatableClockController extends ViewController<AnimatableClockVie /** Animate the clock appearance */ public void animateAppear() { - mView.animateAppear(); + if (!mIsDozing) mView.animateAppearOnLockscreen(); } /** |