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

Unverified Commit ff6298e4 authored by Timi Rautamäki's avatar Timi Rautamäki Committed by Michael Bestas
Browse files

Launcher: Fix all apps view not dismissing

The logic was reversed. All apps view should dissmiss on back key when
the searchbox is focused but empty and clear when not empty.

Change-Id: Id11c991dae6c159b986966f278f0c792993b6abd
parent c0dd40f3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -136,7 +136,7 @@ public class AllAppsSearchBarController
    public boolean onBackKey() {
        // Only hide the search field if there is no query
        String query = Utilities.trim(mInput.getEditableText().toString());
        if (query.isEmpty()) {
        if (!query.isEmpty()) {
            reset();
            return true;
        }