mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-19 10:48:19 +00:00
Revert "Revert "Removing insets controller animation as part of ..."
Revert "Revert "Moving insets animation to StateHandler so that ..." Revert submission 13823490-revert-13810332-insetcontroller-CLXXLCZAUM Reason for revert: Fixed original error in ag/13823726 Reverted Changes: Ie19a3fd90:Revert "Moving insets animation to StateHandler so... I4eb33772a:Revert "Removing insets controller animation as pa... Change-Id: I7fb395c51ea99081913bc99515257e98c0a32754
This commit is contained in:
@@ -63,6 +63,7 @@ import com.android.systemui.shared.system.ActivityManagerWrapper;
|
||||
import com.android.systemui.shared.system.ActivityOptionsCompat;
|
||||
import com.android.systemui.shared.system.RemoteAnimationTargetCompat;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.stream.Stream;
|
||||
|
||||
/**
|
||||
@@ -244,15 +245,12 @@ public abstract class BaseQuickstepLauncher extends Launcher
|
||||
}
|
||||
|
||||
@Override
|
||||
protected StateHandler<LauncherState>[] createStateHandlers() {
|
||||
return new StateHandler[] {
|
||||
getAllAppsController(),
|
||||
getWorkspace(),
|
||||
getDepthController(),
|
||||
new RecentsViewStateController(this),
|
||||
new BackButtonAlphaHandler(this),
|
||||
getTaskbarStateHandler(),
|
||||
};
|
||||
protected void collectStateHandlers(List<StateHandler> out) {
|
||||
super.collectStateHandlers(out);
|
||||
out.add(getDepthController());
|
||||
out.add(new RecentsViewStateController(this));
|
||||
out.add(new BackButtonAlphaHandler(this));
|
||||
out.add(getTaskbarStateHandler());
|
||||
}
|
||||
|
||||
public DepthController getDepthController() {
|
||||
|
||||
Reference in New Issue
Block a user