diff options
Diffstat (limited to 'services/java/com/android/server/wm/WindowManagerService.java')
-rw-r--r-- | services/java/com/android/server/wm/WindowManagerService.java | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/services/java/com/android/server/wm/WindowManagerService.java b/services/java/com/android/server/wm/WindowManagerService.java index f5a5e2e..81f7d13 100644 --- a/services/java/com/android/server/wm/WindowManagerService.java +++ b/services/java/com/android/server/wm/WindowManagerService.java @@ -4703,6 +4703,8 @@ public class WindowManagerService extends IWindowManager.Stub mH.sendMessageDelayed(msg, 30*1000); } + mPolicy.systemBooted(); + performEnableScreen(); } @@ -7921,13 +7923,13 @@ public class WindowManagerService extends IWindowManager.Stub if (mWindowDetachedWallpaper != windowDetachedWallpaper) { if (DEBUG_WALLPAPER) Slog.v(TAG, "Detached wallpaper changed from " + mWindowDetachedWallpaper - + windowDetachedWallpaper); + + " to " + windowDetachedWallpaper); mWindowDetachedWallpaper = windowDetachedWallpaper; wallpaperMayChange = true; } if (windowAnimationBackgroundColor != 0) { - // If this window that wants black is the current wallpaper + // If the window that wants black is the current wallpaper // target, then the black goes *below* the wallpaper so we // don't cause the wallpaper to suddenly disappear. WindowState target = windowAnimationBackground; |