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

Commit 033e6141 authored by Sunny Goyal's avatar Sunny Goyal
Browse files

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

Change-Id: I564501244cb1478195e5d226da295c13269ff524
parent 9869f758
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() {