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

Commit b4491163 authored by Vinit Nayak's avatar Vinit Nayak
Browse files

Return false for isSplitSelectionActive() if controller not initialized

Test: unable to repro
Fixes: 342716244
Flag: EXEMPT bugfix
Change-Id: I9d7d54d5f7571286778c0e82ef4082f9b5843c1d
parent 48c2690e
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -756,6 +756,9 @@ public class QuickstepLauncher extends Launcher implements RecentsViewContainer

    @Override
    public boolean isSplitSelectionActive() {
        if (mSplitSelectStateController == null) {
            return false;
        }
        return mSplitSelectStateController.isSplitSelectActive();
    }