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

Commit 87030d72 authored by Makoto Onuki's avatar Makoto Onuki Committed by Android (Google) Code Review
Browse files

Merge "Fix min handling in AbsSeekBar" into pi-dev

parents 9c1b415a a46d2d04
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -863,7 +863,7 @@ public abstract class AbsSeekBar extends ProgressBar {
        }

        final int range = getMax() - getMin();
        progress += scale * range;
        progress += scale * range + getMin();

        setHotspot(x, y);
        setProgressInternal(Math.round(progress), true, false);