edje entry - also filter 0x7f (DEL) char on input as it's invalid entry

@fix
This commit is contained in:
Carsten Haitzler 2015-06-12 17:39:51 +09:00
parent c4a797ff6e
commit 8f0b8a9060
1 changed files with 2 additions and 1 deletions

View File

@ -1885,7 +1885,8 @@ _edje_key_down_cb(void *data, Evas *e EINA_UNUSED, Evas_Object *obj EINA_UNUSED,
free(compres);
compres = NULL;
_compose_seq_reset(en);
if (ev->string && (!ev->string[1]) && (ev->string[0] < 0x20))
if (ev->string && (!ev->string[1]) &&
((ev->string[0] < 0x20) || (ev->string[0] == 0x7f)))
goto end;
}
else