Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2079738a authored by Pragya Bajoria's avatar Pragya Bajoria
Browse files

Add a flag to enable windowing transition handlers and observers.

Bug: 332682201
Change-Id: I44873203732dbb7d8cff0972fd2b5ad5eb05d104
Flag: EXEMPT (adding a flag for developer options)
parent 8e6b0c4b
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -65,7 +65,9 @@ public enum DesktopModeFlags {
    ENABLE_DESKTOP_WINDOWING_TASKBAR_RUNNING_APPS(
            Flags::enableDesktopWindowingTaskbarRunningApps, true),
    ENABLE_DESKTOP_WINDOWING_TRANSITIONS(Flags::enableDesktopWindowingTransitions, false),
    ENABLE_DESKTOP_WINDOWING_EXIT_TRANSITIONS(Flags::enableDesktopWindowingExitTransitions, false);
    ENABLE_DESKTOP_WINDOWING_EXIT_TRANSITIONS(Flags::enableDesktopWindowingExitTransitions, false),
    ENABLE_WINDOWING_TRANSITION_HANDLERS_OBSERVERS(
            Flags::enableWindowingTransitionHandlersObservers, false);

    private static final String TAG = "DesktopModeFlagsUtil";
    // Function called to obtain aconfig flag value.