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

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

[0/n] Create bug fix flag for closing top transparent fullscreen task

Flag to forcefully close the top transparent fullscreen task if another
task is opened or brought to front.

Flag: EXEMPT Flag creation: force_close_top_transparent_fullscreen_task
Bug: 395041610
Test: m
Change-Id: I04608801e2476fe2212c292233450a479a682289
parent 6904a08f
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -138,6 +138,8 @@ public enum DesktopModeFlags {
    ENABLE_WINDOWING_TRANSITION_HANDLERS_OBSERVERS(
            Flags::enableWindowingTransitionHandlersObservers, false),
    EXCLUDE_CAPTION_FROM_APP_BOUNDS(Flags::excludeCaptionFromAppBounds, false),
    FORCE_CLOSE_TOP_TRANSPARENT_FULLSCREEN_TASK(
            Flags::forceCloseTopTransparentFullscreenTask, false),
    IGNORE_ASPECT_RATIO_RESTRICTIONS_FOR_RESIZEABLE_FREEFORM_ACTIVITIES(
            Flags::ignoreAspectRatioRestrictionsForResizeableFreeformActivities, true),
    INCLUDE_TOP_TRANSPARENT_FULLSCREEN_TASK_IN_DESKTOP_HEURISTIC(
+11 −0
Original line number Diff line number Diff line
@@ -49,6 +49,17 @@ flag {
    }
}

flag {
    name: "force_close_top_transparent_fullscreen_task"
    namespace: "lse_desktop_experience"
    description: "If a top transparent fullscreen task is on top of desktop mode, force it to /n"
                 "close if another task is opened or brought to front."
    bug: "395041610"
    metadata {
        purpose: PURPOSE_BUGFIX
    }
}

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