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

Commit bb696dcc authored by Alan Viverette's avatar Alan Viverette
Browse files

Fix radial time picker inner circle (1-12) selections

Result of a poorly collapsed set of if block conditionals.

BUG: 17580782
Change-Id: I7f7e5038f943d1f49e1541acfa282479cb2505ea
parent 547f97ac
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;
            }