Merge "Fix reporting of window visibility in WindowManagerService."

This commit is contained in:
Dianne Hackborn
2010-04-03 15:31:54 -07:00
committed by Android Code Review

View File

@@ -8520,7 +8520,8 @@ public class WindowManagerService extends IWindowManager.Stub
final int N = allAppWindows.size();
for (int i=0; i<N; i++) {
WindowState win = allAppWindows.get(i);
if (win == startingWindow || win.mAppFreezing) {
if (win == startingWindow || win.mAppFreezing
|| win.mAttrs.type == TYPE_APPLICATION_STARTING) {
continue;
}
if (DEBUG_VISIBILITY) {