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

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

Merge "Add setMin for A11y stream slider bar." into pi-dev

parents a194a6be 9058c7f4
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -765,6 +765,11 @@ public class VolumeDialogImpl implements VolumeDialog {
        if (max != row.slider.getMax()) {
            row.slider.setMax(max);
        }
        // update A11y slider min
        final int min = ss.levelMin * 100;
        if (isA11yStream && min != row.slider.getMin()) {
            row.slider.setMin(min);
        }

        // update header text
        Util.setText(row.header, getStreamLabelH(ss));