diff options
| author | 2022-11-17 17:29:13 +0000 | |
|---|---|---|
| committer | 2022-11-17 17:33:16 +0000 | |
| commit | 10a1f3e903459f72aa61abefe098c5981b1236ff (patch) | |
| tree | 1009207b8dd6a7bc86e5bcdacbacac289d14020d | |
| parent | b761914b991db72cc3969f217045efb557873f07 (diff) | |
Enable stepped clock flag in Teamfood.
Test: N/A
Bug: 199051139
Change-Id: Idf72b6a69c794f70db80c3657841cfedb6d2d9f4
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/flags/Flags.kt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/flags/Flags.kt b/packages/SystemUI/src/com/android/systemui/flags/Flags.kt index 60fca2db9f23..474d073f473f 100644 --- a/packages/SystemUI/src/com/android/systemui/flags/Flags.kt +++ b/packages/SystemUI/src/com/android/systemui/flags/Flags.kt @@ -124,7 +124,8 @@ object Flags { * Whether the clock on a wide lock screen should use the new "stepping" animation for moving * the digits when the clock moves. */ - @JvmField val STEP_CLOCK_ANIMATION = unreleasedFlag(212, "step_clock_animation") + @JvmField + val STEP_CLOCK_ANIMATION = unreleasedFlag(212, "step_clock_animation", teamfood = true) /** * Migration from the legacy isDozing/dozeAmount paths to the new KeyguardTransitionRepository |