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

Commit 9af20470 authored by Alan Viverette's avatar Alan Viverette Committed by Android Git Automerger
Browse files

am 40994e66: Merge "Fix radial time picker inner circle (1-12) selections" into lmp-dev

* commit '40994e66f278da83e2e4e581c85d5092ee1fb1c0':
  Fix radial time picker inner circle (1-12) selections
parents f9390f56 840855c0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -557,7 +557,7 @@ public class RadialTimePickerView extends View implements View.OnTouchListener {
            if (mIsOnInnerCircle && hour == 0) {
                // Inner circle is 1 through 12.
                hour = 12;
            } else if (hour != 0) {
            } else if (!mIsOnInnerCircle && hour != 0) {
                // Outer circle is 13 through 23 and 0.
                hour += 12;
            }