diff options
| author | 2021-03-19 15:46:13 -0700 | |
|---|---|---|
| committer | 2021-03-19 15:46:13 -0700 | |
| commit | 751a2c9abbde9db32a7a78b7a0a34703424bb838 (patch) | |
| tree | 4975891f9406f88538a28116aa987545ae8423d7 | |
| parent | f686e229340c69fe4c16e752c8bdc80a5d79499a (diff) | |
Fix TalkBack selection after QS panel open
Test: Turn on TalkBack, select QS user-switcher icon
Bug: 182401372
Change-Id: I10e12530c9680a61022529817f1868b91b06039a
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/phone/NotificationPanelViewController.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/phone/NotificationPanelViewController.java b/packages/SystemUI/src/com/android/systemui/statusbar/phone/NotificationPanelViewController.java index 4ef6668acfb9..3f0d6ab798b1 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/NotificationPanelViewController.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/NotificationPanelViewController.java @@ -1325,6 +1325,9 @@ public class NotificationPanelViewController extends PanelViewController { traceQsJank(true /* startTracing */, false /* wasCancelled */); flingSettings(0 /* velocity */, FLING_EXPAND); mQSDetailDisplayer.showDetailAdapter(qsDetailAdapter, 0, 0); + if (mAccessibilityManager.isEnabled()) { + mView.setAccessibilityPaneTitle(determineAccessibilityPaneTitle()); + } } public void expandWithoutQs() { |