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

Commit 9b73c86d authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Fixing crash when changing state while all-apps is not complete bound"...

Merge "Fixing crash when changing state while all-apps is not complete bound" into ub-launcher3-master
parents c8fd022b 033e6141
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -392,7 +392,8 @@ public class AllAppsContainerView extends SpringRelativeLayout implements DragSo
    }

    public RecyclerViewFastScroller getScrollBar() {
        return getActiveRecyclerView().getScrollbar();
        AllAppsRecyclerView rv = getActiveRecyclerView();
        return rv == null ? null : rv.getScrollbar();
    }

    public void setupHeader() {