combobox: fix layer setting for the hover

in cases where a ui is using layers other objects could overlap the
hover object. Which is wrong, the genlist should stay above the rest of
the content, in any case.
This commit is contained in:
Marcel Hollerbach 2017-03-31 19:56:36 +02:00
parent 4ef3f6366f
commit 9661ab7052
1 changed files with 1 additions and 0 deletions

View File

@ -337,6 +337,7 @@ _elm_combobox_efl_object_constructor(Eo *obj, Elm_Combobox_Data *sd)
//hover
sd->hover = efl_add(ELM_HOVER_CLASS, sd->hover_parent);
evas_object_layer_set(sd->hover, EVAS_LAYER_MAX);
elm_widget_mirrored_automatic_set(sd->hover, EINA_FALSE);
elm_hover_target_set(sd->hover, obj);
elm_widget_sub_object_add(obj, sd->hover);