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

Commit c3ba24f0 authored by Tracy Zhou's avatar Tracy Zhou Committed by Android (Google) Code Review
Browse files

Merge "Patch npe in TaskbarAllAppsController" into tm-qpr-dev

parents b17399e5 2583fb48
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);