commit | 2e041a61afee3db678db73402cdcfdbb1c5e6640 | [log] [tgz] |
---|---|---|
author | Hyunyoung Song <hyunyoungs@google.com> | Tue Jun 07 15:37:51 2016 -0700 |
committer | Hyunyoung Song <hyunyoungs@google.com> | Tue Jun 07 15:37:51 2016 -0700 |
tree | 229f3943b9979f68f782d7dd2bca9a2c329e52c5 | |
parent | 2a5b356375e15602acab429642064c566a1a1f4d [diff] |
Fix NexusLauncher NPE Change-Id: Ieb1144487841d7ea4ae880bf8e6c2334a2145e7e
diff --git a/src/com/android/launcher3/LauncherStateTransitionAnimation.java b/src/com/android/launcher3/LauncherStateTransitionAnimation.java index ca09f31..6cba2cb 100644 --- a/src/com/android/launcher3/LauncherStateTransitionAnimation.java +++ b/src/com/android/launcher3/LauncherStateTransitionAnimation.java
@@ -677,7 +677,7 @@ animated, initialized, animation, revealDuration, layerViews); } if (!animated || !initialized) { - if (!FeatureFlags.LAUNCHER3_ALL_APPS_PULL_UP) { + if (FeatureFlags.LAUNCHER3_ALL_APPS_PULL_UP) { mAllAppsController.finishPullDown(); } fromView.setVisibility(View.GONE);