diff options
| author | 2013-11-11 18:02:08 +0000 | |
|---|---|---|
| committer | 2013-11-11 18:02:08 +0000 | |
| commit | 45bf2815158cb98130fff120b34ad05f5a54b8f8 (patch) | |
| tree | 03f2aa48194a618e3116da9c115ec3347cec4583 | |
| parent | 8cfa6d083bc5638801fa6d1b2dfccbc460c88bb9 (diff) | |
| parent | a8ee262c04749db4f32f73d2b9e7f58989c4638b (diff) | |
Merge "Fix a couple of issues with mOpeningApps." into klp-dev
| -rw-r--r-- | services/java/com/android/server/wm/WindowManagerService.java | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/services/java/com/android/server/wm/WindowManagerService.java b/services/java/com/android/server/wm/WindowManagerService.java index 55b0b3acf56d..818cfecde25a 100644 --- a/services/java/com/android/server/wm/WindowManagerService.java +++ b/services/java/com/android/server/wm/WindowManagerService.java @@ -4306,10 +4306,6 @@ public class WindowManagerService extends IWindowManager.Stub // If we are preparing an app transition, then delay changing // the visibility of this token until we execute that transition. if (okToDisplay() && mAppTransition.isTransitionSet()) { - // Already in requested state, don't do anything more. - if (wtoken.hiddenRequested != visible) { - return; - } wtoken.hiddenRequested = !visible; if (!wtoken.startingDisplayed) { @@ -8526,6 +8522,7 @@ public class WindowManagerService extends IWindowManager.Stub // We are transitioning from an activity with // a wallpaper to one without. transit = AppTransition.TRANSIT_WALLPAPER_CLOSE; + mAnimateWallpaperWithTarget = true; if (DEBUG_APP_TRANSITIONS) Slog.v(TAG, "New transit away from wallpaper: " + transit); } else if (mWallpaperTarget != null && mWallpaperTarget.isVisibleLw()) { |