Merge "Make ENABLE_TASK_STABILIZER a toggleable via global settings" into ub-launcher3-master

This commit is contained in:
Tony Wickham 2019-01-11 20:40:07 +00:00 committed by Android (Google) Code Review
commit d32e4769fe
1 changed files with 3 additions and 2 deletions

View File

@ -95,8 +95,9 @@ abstract class BaseFlags {
public static final TogglableFlag APPLY_CONFIG_AT_RUNTIME = new TogglableFlag(
"APPLY_CONFIG_AT_RUNTIME", true, "Apply display changes dynamically");
public static final TogglableFlag ENABLE_TASK_STABILIZER = new TogglableFlag(
"ENABLE_TASK_STABILIZER", false, "Stable task list across fast task switches");
public static final ToggleableGlobalSettingsFlag ENABLE_TASK_STABILIZER
= new ToggleableGlobalSettingsFlag("ENABLE_TASK_STABILIZER", false,
"Stable task list across fast task switches");
public static final TogglableFlag QUICKSTEP_SPRINGS = new TogglableFlag("QUICKSTEP_SPRINGS",
false, "Enable springs for quickstep animations");