Loading services/core/java/com/android/server/wm/WindowManagerService.java +3 −3 Original line number Original line Diff line number Diff line Loading @@ -6011,9 +6011,9 @@ public class WindowManagerService extends IWindowManager.Stub return; return; } } if (!displayContent.isReady() || !mPolicy.isScreenOn()) { if (!displayContent.isReady() || !mPolicy.isScreenOn() || !okToAnimate()) { // No need to freeze the screen before the display is ready, system is ready, or if // No need to freeze the screen before the display is ready, if the screen is off, // the screen is off. // or we can't currently animate. return; return; } } Loading Loading
services/core/java/com/android/server/wm/WindowManagerService.java +3 −3 Original line number Original line Diff line number Diff line Loading @@ -6011,9 +6011,9 @@ public class WindowManagerService extends IWindowManager.Stub return; return; } } if (!displayContent.isReady() || !mPolicy.isScreenOn()) { if (!displayContent.isReady() || !mPolicy.isScreenOn() || !okToAnimate()) { // No need to freeze the screen before the display is ready, system is ready, or if // No need to freeze the screen before the display is ready, if the screen is off, // the screen is off. // or we can't currently animate. return; return; } } Loading