Skip to content

Commit 35d0e1d

Browse files
author
Craig Mautner
committed
Keep launcher screen from flashing over lockscreen
Extend the force hide period to include the animation. Fixes bug b6471929. Change-Id: I91daf9dc678723be4c69913aa5a3aa0e265d103e
1 parent bf6e0ba commit 35d0e1d

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)