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

Commit 7cdd993b authored by Eghosa Ewansiha-Vlachavas's avatar Eghosa Ewansiha-Vlachavas
Browse files

[0/n] Create bug fix flag for is desktop mode showing heuristic update

Flag to include the top transparent fullscreen task launched in desktop
mode in the is desktop mode showing heuristic.

Flag: EXEMPT Flag creation:
include_top_transparent_fullscreen_task_in_desktop_heuristic
Bug: 379543275
Test: m

Change-Id: I771ab5f900187f1e709331c525432c453087df79
parent deadc63e
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -86,7 +86,9 @@ public enum DesktopModeFlags {
    ENABLE_DESKTOP_APP_LAUNCH_ALTTAB_TRANSITIONS_BUGFIX(
            Flags::enableDesktopAppLaunchAlttabTransitionsBugfix, false),
    ENABLE_DESKTOP_APP_LAUNCH_TRANSITIONS_BUGFIX(
            Flags::enableDesktopAppLaunchTransitionsBugfix, false);
            Flags::enableDesktopAppLaunchTransitionsBugfix, false),
    INCLUDE_TOP_TRANSPARENT_FULLSCREEN_TASK_IN_DESKTOP_HEURISTIC(
            Flags::includeTopTransparentFullscreenTaskInDesktopHeuristic, true);

    private static final String TAG = "DesktopModeFlagsUtil";
    // Function called to obtain aconfig flag value.
+11 −0
Original line number Diff line number Diff line
@@ -15,6 +15,17 @@ flag {
    bug: "319492844"
}

flag {
    name: "include_top_transparent_fullscreen_task_in_desktop_heuristic"
    namespace: "lse_desktop_experience"
    description: "Whether to include any top transparent fullscreen task launched in desktop /n"
                 "mode in the heuristic for if desktop windowing is showing or not."
    bug: "379543275"
    metadata {
        purpose: PURPOSE_BUGFIX
    }
}

flag {
    name: "enable_windowing_dynamic_initial_bounds"
    namespace: "lse_desktop_experience"