mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-03-01 00:06:47 +00:00
Return false for isSplitSelectionActive() if controller not initialized
Test: unable to repro
Fixes: 342716244
Flag: EXEMPT bugfix
Change-Id: I9d7d54d5f7571286778c0e82ef4082f9b5843c1d
(cherry picked from commit b449116345)
Merged-In: I9d7d54d5f7571286778c0e82ef4082f9b5843c1d
This commit is contained in:
@@ -740,6 +740,9 @@ public class QuickstepLauncher extends Launcher {
|
||||
|
||||
@Override
|
||||
public boolean isSplitSelectionActive() {
|
||||
if (mSplitSelectStateController == null) {
|
||||
return false;
|
||||
}
|
||||
return mSplitSelectStateController.isSplitSelectActive();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user