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

Commit 6befca06 authored by Kazuki Takise's avatar Kazuki Takise
Browse files

Add flag to upscale SCM apps when they exit desktop mode

Flag: com.android.window.flags.enable_upscaling_size_compat_on_exiting_desktop_bugfix
Bug: 432329483
Test: m
Change-Id: I07a5803d59f2f312cba281aea64cf8b793c11024
parent 1cf0749b
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"