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

Commit cf6c5720 authored by Romain Guy's avatar Romain Guy
Browse files

Do not start filtering if the first character is a space.

Bug: #2347833.
parent 3bf657a2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2969,7 +2969,7 @@ public abstract class AbsListView extends AdapterView<ListAdapter> implements Te
            break;
        case KeyEvent.KEYCODE_SPACE:
            // Only send spaces once we are filtered
            okToSend = mFiltered = true;
            okToSend = mFiltered;
            break;
        }