Skip to content

Commit ab1c545

Browse files
Craig MautnerAndroid (Google) Code Review
authored andcommitted
Merge "Keep launcher screen from flashing over lockscreen" into jb-dev
2 parents 6788e02 + 35d0e1d commit ab1c545

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ private void updateWindowsAndWallpaperLocked() {
269269
mPendingLayoutChanges);
270270
}
271271
mService.mFocusMayChange = true;
272-
} else if (win.isReadyForDisplay() && winAnimator.mAnimation == null) {
272+
} else if (win.isReadyForDisplay()) {
273273
mForceHiding = true;
274274
}
275275
} else if (mPolicy.canBeForceHidden(win, win.mAttrs)) {

0 commit comments

Comments
 (0)