diff options
author | Beverly <beverlyt@google.com> | 2021-07-02 15:35:41 -0400 |
---|---|---|
committer | Beverly Tai <beverlyt@google.com> | 2021-07-07 20:45:06 +0000 |
commit | 4812dfbc6293b29e9a38909eccea398bee39c7be (patch) | |
tree | afa8cede809c3a866d57592d28043d769c417a6a /packages/SystemUI/src/com/android/keyguard/AnimatableClockController.java | |
parent | 05be67374674da85f6c596ff44a8e4a43aafe742 (diff) |
Bring back time formatting for single line clock
Use old date format for the single line clock, so that we now
support (for single line clock) different clock representations.
For example, French Canadian uses an h instead of a colon
(13 h 01 instead of 13:01).
Test: manual
Bug: 186726401
Fixes: 191761465
Change-Id: If97a49780029f24dc99625a310729630b69e7a68
Diffstat (limited to 'packages/SystemUI/src/com/android/keyguard/AnimatableClockController.java')
-rw-r--r-- | packages/SystemUI/src/com/android/keyguard/AnimatableClockController.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/SystemUI/src/com/android/keyguard/AnimatableClockController.java b/packages/SystemUI/src/com/android/keyguard/AnimatableClockController.java index 4b3af34b1df1..fcf4e4703ed3 100644 --- a/packages/SystemUI/src/com/android/keyguard/AnimatableClockController.java +++ b/packages/SystemUI/src/com/android/keyguard/AnimatableClockController.java @@ -212,6 +212,7 @@ public class AnimatableClockController extends ViewController<AnimatableClockVie } else { mView.setLineSpacingScale(mDefaultLineSpacing); } + mView.refreshFormat(); } } |