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

Commit 628a0397 authored by Vinit Nayak's avatar Vinit Nayak
Browse files

Update fail fast check logic

* Incorrectly wasn't erroring out when flag was not enabled

Bug: 295467097
Change-Id: I5716309f832d1170ea92ad357897299c0438d2d0
parent ec52ed9f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1355,7 +1355,7 @@ public class QuickstepLauncher extends Launcher {

    @Override
    public boolean handleIncorrectSplitTargetSelection() {
        if (enableSplitContextually() && !mSplitSelectStateController.isSplitSelectActive()) {
        if (!enableSplitContextually() || !mSplitSelectStateController.isSplitSelectActive()) {
            return false;
        }
        mSplitSelectStateController.getSplitInstructionsView().goBoing();