ctxpopup: block whole area if the editor ctxpopup is activated.

Since enventor allowed user to touch outer of editor while its ctxpopup is activated,
the context could be broken.

Block whole area and prevent the context break.

@fix T3752
This commit is contained in:
Hermet Park 2016-06-01 23:40:40 +09:00
parent 73ceae42b5
commit 6635a98393
1 changed files with 4 additions and 2 deletions

View File

@ -787,7 +787,8 @@ ctxpopup_img_preview_create(edit_data *ed,
Evas_Smart_Cb ctxpopup_relay_cb)
{
//create ctxpopup
Evas_Object *ctxpopup = elm_ctxpopup_add(edit_obj_get(ed));
Evas_Object *win = elm_object_top_widget_get(edit_obj_get(ed));
Evas_Object *ctxpopup = elm_ctxpopup_add(win);
if (!ctxpopup) return NULL;
elm_config_focus_autoscroll_mode_set(ELM_FOCUS_AUTOSCROLL_MODE_NONE);
@ -861,7 +862,8 @@ ctxpopup_candidate_list_create(edit_data *ed, attr_value *attr,
Enventor_Ctxpopup_Type *type)
{
//create ctxpopup
Evas_Object *ctxpopup = elm_ctxpopup_add(edit_obj_get(ed));
Evas_Object *win = elm_object_top_widget_get(edit_obj_get(ed));
Evas_Object *ctxpopup = elm_ctxpopup_add(win);
if (!ctxpopup) return NULL;
elm_config_focus_autoscroll_mode_set(ELM_FOCUS_AUTOSCROLL_MODE_NONE);