Fix bad super call in PhoneStatusBarView accessibility

Change-Id: Ie18e6c9b74dce498c1c830ce983a73aa619c6df3
This commit is contained in:
Alan Viverette
2015-01-08 11:13:06 -08:00
parent 5dc973cb03
commit 5b0467522c

View File

@@ -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.