Merge "Fixing regression in transition after returning to home from another app. (Bug 6629707)" into jb-dev
This commit is contained in:
@@ -1233,17 +1233,6 @@ public final class Launcher extends Activity
|
|||||||
// some communication back with the app.
|
// some communication back with the app.
|
||||||
mWorkspace.postDelayed(mBuildLayersRunnable, 500);
|
mWorkspace.postDelayed(mBuildLayersRunnable, 500);
|
||||||
|
|
||||||
// We had to enable the wallpaper visibility when launching apps from all
|
|
||||||
// apps (so that the transitions would be the same as when launching from
|
|
||||||
// workspace) so take this time to see if we need to re-disable the
|
|
||||||
// wallpaper visibility to ensure performance.
|
|
||||||
mWorkspace.post(new Runnable() {
|
|
||||||
@Override
|
|
||||||
public void run() {
|
|
||||||
disableWallpaperIfInAllApps();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
observer.removeOnPreDrawListener(this);
|
observer.removeOnPreDrawListener(this);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@@ -2666,7 +2655,12 @@ public final class Launcher extends Activity
|
|||||||
updateWallpaperVisibility(true);
|
updateWallpaperVisibility(true);
|
||||||
} else {
|
} else {
|
||||||
// When launcher has focus again, disable the wallpaper if we are in AllApps
|
// When launcher has focus again, disable the wallpaper if we are in AllApps
|
||||||
disableWallpaperIfInAllApps();
|
mWorkspace.postDelayed(new Runnable() {
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
disableWallpaperIfInAllApps();
|
||||||
|
}
|
||||||
|
}, 500);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user