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

Commit 961e453e authored by Timi Rautamäki's avatar Timi Rautamäki Committed by ShevT
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 d1674cce
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -120,7 +120,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;
        }