Skip to content

Commit 5beeb04

Browse files
Hiroshi LockheimerAndroid (Google) Code Review
authored andcommitted
Merge "Don't display based on a dummy animation." into jb-dev
2 parents ddeb7bd + 9c5bf3b commit 5beeb04

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

services/java/com/android/server/wm/WindowState.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -737,7 +737,8 @@ boolean isReadyForDisplayIgnoringKeyguard() {
737737
&& ((!mAttachedHidden && mViewVisibility == View.VISIBLE
738738
&& !mRootToken.hidden)
739739
|| mWinAnimator.mAnimation != null
740-
|| ((atoken != null) && (atoken.mAppAnimator.animation != null)));
740+
|| ((atoken != null) && (atoken.mAppAnimator.animation != null)
741+
&& !mWinAnimator.isDummyAnimation()));
741742
}
742743

743744
/**

0 commit comments

Comments
 (0)