live_edit: fix focus highlight floating issue.

After selecting a live view edit item,
the item focus highlighting is remained there.
Now it's fixed by moving the focus to live view.
This commit is contained in:
ChunEon Park 2015-06-23 10:28:25 +09:00
parent 6e7e18b12b
commit f7bb26e9b1
1 changed files with 1 additions and 0 deletions

View File

@ -874,6 +874,7 @@ ctxpopup_dismissed_cb(void *data, Evas_Object *obj,
{
live_data *ld = data;
if (!ld->layout) live_edit_cancel();
evas_object_focus_set(ld->live_view, EINA_TRUE);
evas_object_del(obj);
ld->ctxpopup = NULL;
}