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

Commit 82b0909c authored by Kazuki Takise's avatar Kazuki Takise Committed by Android (Google) Code Review
Browse files

Merge "Add flag to upscale SCM apps when they exit desktop mode" into main

parents d8b829a0 6befca06
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -269,6 +269,9 @@ public enum DesktopExperienceFlags {
    ENABLE_TILE_RESIZING(Flags::enableTileResizing, true, Flags.FLAG_ENABLE_TILE_RESIZING),
    ENABLE_UPDATED_DISPLAY_CONNECTION_DIALOG(Flags::enableUpdatedDisplayConnectionDialog, false,
            Flags.FLAG_ENABLE_UPDATED_DISPLAY_CONNECTION_DIALOG),
    ENABLE_UPSCALING_SIZE_COMPAT_ON_EXITING_DESKTOP_BUGFIX(
            Flags::enableUpscalingSizeCompatOnExitingDesktopBugfix, false,
            Flags.FLAG_ENABLE_UPSCALING_SIZE_COMPAT_ON_EXITING_DESKTOP_BUGFIX),
    ENABLE_WINDOWING_TASK_STACK_ORDER_BUGFIX(
            Flags::enableWindowingTaskStackOrderBugfix, true,
            Flags.FLAG_ENABLE_WINDOWING_TASK_STACK_ORDER_BUGFIX),
+10 −0
Original line number Diff line number Diff line
@@ -1444,6 +1444,16 @@ flag {
    }
}

flag {
    name: "enable_upscaling_size_compat_on_exiting_desktop_bugfix"
    namespace: "lse_desktop_experience"
    description: "Enables upscaling of size-compat apps in fullscreen after they exit desktop mode."
    bug: "432329483"
    metadata {
        purpose: PURPOSE_BUGFIX
    }
}

flag {
    name: "enable_visual_indicator_in_transition_bugfix"
    namespace: "lse_desktop_experience"