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

Commit 2de4a06a authored by Kevin Huang's avatar Kevin Huang Committed by Automerger Merge Worker
Browse files

Merge "Fix not able to indicate split position in command to enter split" into...

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

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/19600599



Change-Id: I1d86f7ebe4f844577a24054928a6e34b2d67b804
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents 651261de 490acded
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;