recover the autocomplete backspace key issue.

before change this, backspace is not working for auto complete,
so user can't cancel the popup.

this change is reverted to the old one code (118e86e0dd)
This commit is contained in:
ChunEon Park 2015-06-22 14:20:14 +09:00
parent 9e81a5f263
commit d1e7eed0fb
1 changed files with 1 additions and 2 deletions

View File

@ -348,8 +348,7 @@ anchor_unfocused_cb(void *data EINA_UNUSED, Evas_Object *obj EINA_UNUSED,
static void
queue_reset(autocomp_data *ad)
{
if (!ad->queue_pos && !ad->anchor_visible)
return;
if (ad->queue_pos == -1) return;
ad->queue_pos = 0;
memset(ad->queue, 0x0, sizeof(ad->queue));
entry_anchor_off(ad);