diff options
| author | 2015-01-08 11:13:06 -0800 | |
|---|---|---|
| committer | 2015-01-08 11:13:06 -0800 | |
| commit | 5b0467522c8fd2e17d688e04ec592bdba9f2f012 (patch) | |
| tree | 41dc204a935bc18b0d959afcd1b51c83542e1aa7 | |
| parent | 5dc973cb03889c58988703b58aefbd2397fb02c3 (diff) | |
Fix bad super call in PhoneStatusBarView accessibility
Change-Id: Ie18e6c9b74dce498c1c830ce983a73aa619c6df3
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBarView.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBarView.java b/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBarView.java index 2b610e45521e..701c57ff9269 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBarView.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBarView.java @@ -78,7 +78,7 @@ public class PhoneStatusBarView extends PanelBar { @Override public boolean onRequestSendAccessibilityEventInternal(View child, AccessibilityEvent event) { - if (super.onRequestSendAccessibilityEvent(child, event)) { + if (super.onRequestSendAccessibilityEventInternal(child, event)) { // The status bar is very small so augment the view that the user is touching // with the content of the status bar a whole. This way an accessibility service // may announce the current item as well as the entire content if appropriate. |