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

Unverified Commit c00aff0c authored by MrSluffy's avatar MrSluffy Committed by Michael Bestas
Browse files

Launcher3: Fixed keyboard disappear on empty search

Closes: https://github.com/LawnchairLauncher/lawnchair/issues/4095
Change-Id: I4c7b7b80ed71e8e995370815f9df65ba949fac24
parent 65d0b917
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -571,16 +571,12 @@ public class ActivityAllAppsContainerView<T extends Context & ActivityContext>
            // Will be called at the end of the animation.
            return;
        }
        if (currentActivePage != SEARCH) {
            mActivityContext.hideKeyboard();
        }
        if (mAH.get(currentActivePage).mRecyclerView != null) {
            mAH.get(currentActivePage).mRecyclerView.bindFastScrollbar(mFastScroller,
                    ALL_APPS_SCROLLER);
        }
        // Header keeps track of active recycler view to properly render header protection.
        mHeader.setActiveRV(currentActivePage);
        reset(true /* animate */, !isSearching() /* exitSearch */, false /* clearScrim */);

        mWorkManager.onActivePageChanged(currentActivePage);
    }