am 8d9a06fe: am 6e7bf935: Merge "Notify accessibility for window changes after an app animation end." into lmp-mr1-dev

* commit '8d9a06feee0d5311e40adbccb0d2205a531def85':
  Notify accessibility for window changes after an app animation end.
This commit is contained in:
Svetoslav
2014-12-05 20:19:24 +00:00
committed by Android Git Automerger

View File

@@ -455,6 +455,14 @@ class WindowStateAnimator {
}
}
if (!isWindowAnimating()) {
//TODO (multidisplay): Accessibility is supported only for the default display.
if (mService.mAccessibilityController != null
&& mWin.getDisplayId() == Display.DEFAULT_DISPLAY) {
mService.mAccessibilityController.onSomeWindowResizedOrMovedLocked();
}
}
if (!mWin.mExiting) {
return;
}