Merge "Remove mEnterAnimationPending check for accessibility" into rvc-dev

This commit is contained in:
Chavi Weingarten
2020-06-25 19:13:16 +00:00
committed by Android (Google) Code Review

View File

@@ -855,8 +855,7 @@ final class AccessibilityController {
mTempLayer = 0;
mDisplayContent.forAllWindows((w) -> {
if (w.isOnScreen() && w.isVisibleLw()
&& (w.mAttrs.alpha != 0)
&& !w.mWinAnimator.mEnterAnimationPending) {
&& (w.mAttrs.alpha != 0)) {
mTempLayer++;
outWindows.put(mTempLayer, w);
}