From ff0e01b65dac8861d0a319fb643c67f8a573aa97 Mon Sep 17 00:00:00 2001 From: Michael Jurka Date: Fri, 8 Jul 2011 17:08:51 -0700 Subject: [PATCH] Disable wallpaper panning when switching to All Apps --- src/com/android/launcher2/Workspace.java | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/com/android/launcher2/Workspace.java b/src/com/android/launcher2/Workspace.java index fd18338e9d..611d360c0c 100644 --- a/src/com/android/launcher2/Workspace.java +++ b/src/com/android/launcher2/Workspace.java @@ -1439,7 +1439,10 @@ public class Workspace extends SmoothPagedView float offsetFromCenter = (wallpaperTravelHeight / (float) mWallpaperHeight) / 2f; boolean isLandscape = display.getWidth() > display.getHeight(); - final boolean enableWallpaperEffects = isHardwareAccelerated(); + // on phones, don't scroll the wallpaper horizontally or vertically when switching + // to/from all apps + final boolean enableWallpaperEffects = + isHardwareAccelerated() && LauncherApplication.isScreenLarge(); if (enableWallpaperEffects) { switch (shrinkState) { // animating in @@ -1752,7 +1755,10 @@ public class Workspace extends SmoothPagedView } Display display = mLauncher.getWindowManager().getDefaultDisplay(); boolean isLandscape = display.getWidth() > display.getHeight(); - final boolean enableWallpaperEffects = isHardwareAccelerated(); + // on phones, don't scroll the wallpaper horizontally or vertically when switching + // to/from all apps + final boolean enableWallpaperEffects = + isHardwareAccelerated() && LauncherApplication.isScreenLarge(); if (enableWallpaperEffects) { switch (mShrinkState) { // animating out