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

Commit ad086d74 authored by Fergus Henderson's avatar Fergus Henderson Committed by Android (Google) Code Review
Browse files

Merge "Decrease the key progress increment step size to allow finer control of...

Merge "Decrease the key progress increment step size to allow finer control of seekbar using keys. Bug:26926346 Change-Id: Ic7d290552c102d8602275f19dac4d57de4a53297"
parents a65d61a8 4e9a6492
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -955,7 +955,7 @@ public abstract class AbsSeekBar extends ProgressBar {
                if (!canUserSetProgress()) {
                    return false;
                }
                int increment = Math.max(1, Math.round((float) getMax() / 5));
                int increment = Math.max(1, Math.round((float) getMax() / 20));
                if (action == AccessibilityNodeInfo.ACTION_SCROLL_BACKWARD) {
                    increment = -increment;
                }