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

Commit 2583fb48 authored by Tracy Zhou's avatar Tracy Zhou
Browse files

Patch npe in TaskbarAllAppsController

b/234617317#comment3

Bug: 234617317
Test: manual
Change-Id: I7cff0df86db4fdf58b33240594784598950f1a88
parent 20b14804
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -171,8 +171,8 @@ public final class TaskbarAllAppsController {
     * This method should be called after an exit animation finishes, if applicable.
     */
    void maybeCloseWindow() {
        if (AbstractFloatingView.getOpenView(mAllAppsContext, TYPE_ALL) != null
                || mAllAppsContext.getDragController().isSystemDragInProgress()) {
        if (mAllAppsContext != null && (AbstractFloatingView.hasOpenView(mAllAppsContext, TYPE_ALL)
                || mAllAppsContext.getDragController().isSystemDragInProgress())) {
            return;
        }
        mProxyView.close(false);