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

Commit d2db96e8 authored by Android Build Merger (Role)'s avatar Android Build Merger (Role) Committed by Android (Google) Code Review
Browse files

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

Merge "Merge "Add setMin for all slider in volume panel." into pi-dev am: 67332c73 am: 41f4643b"
parents 0770aa9a 9f02d897
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);
        }