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

Commit 840855c0 authored by Alan Viverette's avatar Alan Viverette Committed by Android (Google) Code Review
Browse files

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

parents 628cb74d bb696dcc
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;
            }