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

Commit 612a7b78 authored by Shuming Hao's avatar Shuming Hao Committed by Android (Google) Code Review
Browse files

Merge "Enable the split button in app header menu on external display" into main

parents 72dd8dd2 9cb3b772
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -904,9 +904,10 @@ private constructor(
                floatingBtnSpace.visibility = View.GONE
            }

            // TODO: b/362720126 - remove this check after entering split screen from handle menu
            //  is supported on external display.
            if (taskInfo.displayId != DEFAULT_DISPLAY) {
            if (
                !DesktopExperienceFlags.ENABLE_NON_DEFAULT_DISPLAY_SPLIT_BUGFIX.isTrue &&
                    taskInfo.displayId != DEFAULT_DISPLAY
            ) {
                splitscreenBtn.visibility = View.GONE
                splitscreenBtnSpace.visibility = View.GONE
            }