proclist: handle backspace when hidden

This commit is contained in:
Alastair Poole 2021-01-23 17:12:11 +00:00
parent 6f1444af65
commit 11b4ad2ba4
1 changed files with 1 additions and 1 deletions

View File

@ -1562,7 +1562,7 @@ _win_key_down_search(Ui_Data *pd, Evas_Event_Key_Down *ev)
evas_object_lower(pd->search_pop); evas_object_lower(pd->search_pop);
pd->search_visible = 0; pd->search_visible = 0;
} }
else if (ev->string) else if (ev->string && strcmp(ev->keyname, "BackSpace"))
{ {
if (isspace(ev->string[0])) return; if (isspace(ev->string[0])) return;
size_t len = strlen(ev->string); size_t len = strlen(ev->string);