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

Commit f9b81f24 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
(cherry picked from commit b4491163)
Merged-In: I9d7d54d5f7571286778c0e82ef4082f9b5843c1d
parent 704883ea
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -740,6 +740,9 @@ public class QuickstepLauncher extends Launcher {

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