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

Commit 67332c73 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Add setMin for all slider in volume panel." into pi-dev

parents 8375834c 48542d2f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -765,9 +765,9 @@ public class VolumeDialogImpl implements VolumeDialog {
        if (max != row.slider.getMax()) {
            row.slider.setMax(max);
        }
        // update A11y slider min
        // update slider min
        final int min = ss.levelMin * 100;
        if (isA11yStream && min != row.slider.getMin()) {
        if (min != row.slider.getMin()) {
            row.slider.setMin(min);
        }