summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/com/android/launcher3/Workspace.java8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/com/android/launcher3/Workspace.java b/src/com/android/launcher3/Workspace.java
index ee812aa0e..093619bd0 100644
--- a/src/com/android/launcher3/Workspace.java
+++ b/src/com/android/launcher3/Workspace.java
@@ -2284,9 +2284,6 @@ public class Workspace extends SmoothPagedView
return null;
}
- // Check to see if new Settings need to be taken
- reloadSettings();
-
// Initialize animation arrays for the first time if necessary
initAnimationArrays();
@@ -2317,6 +2314,11 @@ public class Workspace extends SmoothPagedView
final boolean workspaceToOverview = (oldStateIsNormal && stateIsOverview);
final boolean overviewToWorkspace = (oldStateIsOverview && stateIsNormal);
+ if (overviewToWorkspace || overviewToAllApps) {
+ // Check to see if new Settings need to be taken
+ reloadSettings();
+ }
+
mNewScale = 1.0f;
if (oldStateIsOverview) {