From 2e041a61afee3db678db73402cdcfdbb1c5e6640 Mon Sep 17 00:00:00 2001 From: Hyunyoung Song Date: Tue, 7 Jun 2016 15:37:51 -0700 Subject: [PATCH] Fix NexusLauncher NPE Change-Id: Ieb1144487841d7ea4ae880bf8e6c2334a2145e7e --- src/com/android/launcher3/LauncherStateTransitionAnimation.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/android/launcher3/LauncherStateTransitionAnimation.java b/src/com/android/launcher3/LauncherStateTransitionAnimation.java index ca09f312fe..6cba2cb13b 100644 --- a/src/com/android/launcher3/LauncherStateTransitionAnimation.java +++ b/src/com/android/launcher3/LauncherStateTransitionAnimation.java @@ -677,7 +677,7 @@ public class LauncherStateTransitionAnimation { 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);