Revert "Prevent dismissing starting window when reopening app"

This reverts commit 7c88cf8303.
Original bug: b/134561008

Reason for revert: b/135084202

Change-Id: Ib4c17f98d66c9efb10d800d9ba585d14be4ac878
This commit is contained in:
Elisa Pascual Trevino
2019-06-12 22:10:23 +00:00
parent 7c88cf8303
commit 6e814f9f33

View File

@@ -539,14 +539,6 @@ class AppWindowToken extends WindowToken implements WindowManagerService.AppFree
// If the app was already visible, don't reset the waitingToShow state.
if (isHidden()) {
waitingToShow = true;
// Let's reset the draw state in order to prevent the starting window to be
// immediately dismissed when the app still has the surface.
forAllWindows(w -> {
if (w.mAttrs.type != TYPE_APPLICATION_STARTING) {
w.mWinAnimator.resetDrawState();
}
}, true /* traverseTopToBottom */);
}
}