Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 67e281c8 authored by Robert Snoeberger's avatar Robert Snoeberger
Browse files

Refresh TextClock on doze time tick alarm.

This should help prevent the digital clock from displaying the wrong
time on AOD.

Bug: 128534319
Test: atest frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/
Change-Id: Icab482f45305b7aa0f5f4153be12843ac28e3924
parent ae926733
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -141,6 +141,8 @@ public class BubbleClockController implements ClockPlugin {
    @Override
    public void onTimeTick() {
        mAnalogClock.onTimeChanged();
        mDigitalClock.refresh();
        mLockClock.refresh();
    }

    @Override
+2 −0
Original line number Diff line number Diff line
@@ -136,6 +136,8 @@ public class StretchAnalogClockController implements ClockPlugin {
    @Override
    public void onTimeTick() {
        mAnalogClock.onTimeChanged();
        mDigitalClock.refresh();
        mLockClock.refresh();
    }

    @Override