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

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

Merge "Set pane title for accessibility issues" into ub-launcher3-qt-r1-dev

parents ac1a0dae c84412d6
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -311,6 +311,7 @@ public class OptionSelectorController<T extends CustomizationOption<T>> {
            if (labelView != null && !TextUtils.isEmpty(labelView.getText())) {
                labelView.setContentDescription(cd);
            } else if (tileView != null) {
                tileView.setAccessibilityPaneTitle(cd);
                tileView.setContentDescription(cd);
            }
        }
@@ -319,6 +320,7 @@ public class OptionSelectorController<T extends CustomizationOption<T>> {
            if (labelView != null && !TextUtils.isEmpty(labelView.getText())) {
                labelView.setContentDescription(title);
            } else if (tileView != null) {
                tileView.setAccessibilityPaneTitle(title);
                tileView.setContentDescription(title);
            }
        }