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

Commit 490acded authored by Kevin Huang's avatar Kevin Huang Committed by Android (Google) Code Review
Browse files

Merge "Fix not able to indicate split position in command to enter split" into tm-qpr-dev

parents 3c446e92 f67598da
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -56,7 +56,7 @@ public class SplitScreenShellCommandHandler implements
            return false;
        }
        final int taskId = new Integer(args[1]);
        final int sideStagePosition = args.length > 3
        final int sideStagePosition = args.length > 2
                ? new Integer(args[2]) : SPLIT_POSITION_BOTTOM_OR_RIGHT;
        mController.moveToSideStage(taskId, sideStagePosition);
        return true;