diff --git a/res/values-sw600dp/config.xml b/res/values-sw600dp/config.xml index eab77f9b06..fe88274188 100644 --- a/res/values-sw600dp/config.xml +++ b/res/values-sw600dp/config.xml @@ -5,6 +5,9 @@ 3 true + + true + -1000 diff --git a/res/values/config.xml b/res/values/config.xml index 8717f6a47f..2c691a4ce8 100644 --- a/res/values/config.xml +++ b/res/values/config.xml @@ -78,6 +78,9 @@ 4 4 + + false + true 5 diff --git a/res/values/strings.xml b/res/values/strings.xml index 0ea12c4eff..19d363c7d0 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -261,17 +261,4 @@ s --> Folder renamed to %1$s Folder: %1$s - - - - - - - - - - - - - diff --git a/src/com/android/launcher2/Launcher.java b/src/com/android/launcher2/Launcher.java index 6095a2fdc2..700f9211e2 100644 --- a/src/com/android/launcher2/Launcher.java +++ b/src/com/android/launcher2/Launcher.java @@ -3753,7 +3753,7 @@ public final class Launcher extends Activity // with a custom workspace cling (usually specified in an overlay) // For now, only do this on tablets if (mSharedPrefs.getInt(LauncherProvider.DEFAULT_WORKSPACE_RESOURCE_ID, 0) != 0 && - LauncherApplication.isScreenLarge()) { + getResources().getBoolean(R.bool.config_useCustomClings)) { // Use a custom cling View cling = findViewById(R.id.workspace_cling); ViewGroup clingParent = (ViewGroup) cling.getParent();