Loading packages/SystemUI/src/com/android/systemui/statusbar/phone/ClockController.java +2 −2 Original line number Diff line number Diff line Loading @@ -94,8 +94,8 @@ public class ClockController implements TunerService.Tunable { mClockPosition = newValue == null ? STYLE_CLOCK_RIGHT : Integer.valueOf(newValue); } else if (CLOCK_STYLE.equals(key)) { mAmPmStyle = newValue == null ? AM_PM_STYLE_GONE : Integer.valueOf(newValue); } else if (CLOCK_SECONDS.equals(mShowSeconds)) { mShowSeconds = newValue == null ? false : Boolean.valueOf(newValue); } else if (CLOCK_SECONDS.equals(key)) { mShowSeconds = newValue != null && Integer.parseInt(newValue) != 0; } updateActiveClock(); } Loading Loading
packages/SystemUI/src/com/android/systemui/statusbar/phone/ClockController.java +2 −2 Original line number Diff line number Diff line Loading @@ -94,8 +94,8 @@ public class ClockController implements TunerService.Tunable { mClockPosition = newValue == null ? STYLE_CLOCK_RIGHT : Integer.valueOf(newValue); } else if (CLOCK_STYLE.equals(key)) { mAmPmStyle = newValue == null ? AM_PM_STYLE_GONE : Integer.valueOf(newValue); } else if (CLOCK_SECONDS.equals(mShowSeconds)) { mShowSeconds = newValue == null ? false : Boolean.valueOf(newValue); } else if (CLOCK_SECONDS.equals(key)) { mShowSeconds = newValue != null && Integer.parseInt(newValue) != 0; } updateActiveClock(); } Loading