From 0873afd7fa2fe1cb91caf3d71ff98ab6f2f62415 Mon Sep 17 00:00:00 2001 From: Nick Chameyev Date: Tue, 30 May 2023 18:10:08 +0100 Subject: [PATCH] [Unfold animation] Disable preemptive launcher animation Disables preemptive unfold animation by default. Bug: 281821523 Test: unfold on launcher Change-Id: I767f25cf0414a91c82a33cf86ca16db2e4dcfa22 --- src/com/android/launcher3/config/FeatureFlags.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/android/launcher3/config/FeatureFlags.java b/src/com/android/launcher3/config/FeatureFlags.java index 621c2abb90..f88ff86612 100644 --- a/src/com/android/launcher3/config/FeatureFlags.java +++ b/src/com/android/launcher3/config/FeatureFlags.java @@ -302,7 +302,7 @@ public final class FeatureFlags { "Enable widget transition animation when resizing the widgets"); public static final BooleanFlag PREEMPTIVE_UNFOLD_ANIMATION_START = getDebugFlag(270397209, - "PREEMPTIVE_UNFOLD_ANIMATION_START", ENABLED, + "PREEMPTIVE_UNFOLD_ANIMATION_START", DISABLED, "Enables starting the unfold animation preemptively when unfolding, without" + "waiting for SystemUI and then merging the SystemUI progress whenever we " + "start receiving the events");