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

Commit 9addb0da authored by Makoto Onuki's avatar Makoto Onuki Committed by android-build-merger
Browse files

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

am: 87030d72

Change-Id: I8462f28029f16c514ccd456416474a5bedc7e78d
parents de19f09e 87030d72
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);