netstar pushed a commit to branch master. http://git.enlightenment.org/apps/evisum.git/commit/?id=11b4ad2ba48ee965ca89c12bf7554b5443af014a
commit 11b4ad2ba48ee965ca89c12bf7554b5443af014a Author: Alastair Poole <nets...@gmail.com> Date: Sat Jan 23 17:12:11 2021 +0000 proclist: handle backspace when hidden --- src/bin/ui/ui_process_list.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/ui/ui_process_list.c b/src/bin/ui/ui_process_list.c index bfca494..ff7d21b 100644 --- a/src/bin/ui/ui_process_list.c +++ b/src/bin/ui/ui_process_list.c @@ -1562,7 +1562,7 @@ _win_key_down_search(Ui_Data *pd, Evas_Event_Key_Down *ev) evas_object_lower(pd->search_pop); pd->search_visible = 0; } - else if (ev->string) + else if (ev->string && strcmp(ev->keyname, "BackSpace")) { if (isspace(ev->string[0])) return; size_t len = strlen(ev->string); --