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

Commit d0b9aae5 authored by Tracy Zhou's avatar Tracy Zhou
Browse files

Add split instructions to stage split from keyboard shortcut

Fixes: 319098298
Test: When launching split from fullscreen app via keyboard shortcut, the split instruction shows
Change-Id: Ie64e5e65384a24825edc7ae6c8dea3203e2bd916
parent e7575789
Loading
Loading
Loading
Loading
+10 −0
Original line number Original line Diff line number Diff line
@@ -153,7 +153,17 @@ public class SplitWithKeyboardShortcutController {
                    controller.finish(true /* toRecents */, null /* onFinishComplete */,
                    controller.finish(true /* toRecents */, null /* onFinishComplete */,
                            false /* sendUserLeaveHint */);
                            false /* sendUserLeaveHint */);
                }
                }

                @Override
                public void onAnimationCancel(Animator animation) {
                    mLauncher.getDragLayer().removeView(floatingTaskView);
                    mController.getSplitAnimationController()
                            .removeSplitInstructionsView(mLauncher);
                    mController.resetState();
                }
            });
            });
            anim.add(mController.getSplitAnimationController()
                    .getShowSplitInstructionsAnim(mLauncher).buildAnim());
            anim.buildAnim().start();
            anim.buildAnim().start();
        }
        }
    };
    };