From a743d3526f95680328145c43736442e29f92f39e Mon Sep 17 00:00:00 2001 From: Andrew Flynn Date: Fri, 18 May 2012 13:38:52 -0700 Subject: [PATCH] Use different cling for custom workspace Change-Id: I55c53439936d8c300fbb0718216d441f4bab4215 --- src/com/android/launcher2/Cling.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/com/android/launcher2/Cling.java b/src/com/android/launcher2/Cling.java index 7978298465..d61b9883a4 100644 --- a/src/com/android/launcher2/Cling.java +++ b/src/com/android/launcher2/Cling.java @@ -186,11 +186,12 @@ public class Cling extends FrameLayout { mDrawIdentifier.equals(ALLAPPS_LARGE)) { mBackground = getResources().getDrawable(R.drawable.bg_cling2); } else if (mDrawIdentifier.equals(FOLDER_PORTRAIT) || - mDrawIdentifier.equals(FOLDER_LANDSCAPE) || - mDrawIdentifier.equals(WORKSPACE_CUSTOM)) { + mDrawIdentifier.equals(FOLDER_LANDSCAPE)) { mBackground = getResources().getDrawable(R.drawable.bg_cling3); } else if (mDrawIdentifier.equals(FOLDER_LARGE)) { mBackground = getResources().getDrawable(R.drawable.bg_cling4); + } else if (mDrawIdentifier.equals(WORKSPACE_CUSTOM)) { + mBackground = getResources().getDrawable(R.drawable.bg_cling5); } } if (mBackground != null) {