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

Commit 4bd1fe00 authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Cleanup leftRightSplitInPortrait flag" into main

parents 44067a5b f1a4de23
Loading
Loading
Loading
Loading
+0 −7
Original line number Diff line number Diff line
@@ -20,13 +20,6 @@ flag {
    bug: "311462191"
}

flag {
    name: "enable_left_right_split_in_portrait"
    namespace: "multitasking"
    description: "Enables left/right split in portrait"
    bug: "291018646"
}

flag {
    name: "enable_new_bubble_animations"
    namespace: "multitasking"
+1 −2
Original line number Diff line number Diff line
@@ -76,8 +76,7 @@ public class SplitScreenUtils {
     * Returns whether left/right split is allowed in portrait.
     */
    public static boolean allowLeftRightSplitInPortrait(Resources res) {
        return Flags.enableLeftRightSplitInPortrait() && res.getBoolean(
                com.android.internal.R.bool.config_leftRightSplitInPortrait);
        return res.getBoolean(com.android.internal.R.bool.config_leftRightSplitInPortrait);
    }

    /**