bu5hm4n pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=9661ab70524db47abb9c384a368a0fe3aa759e03
commit 9661ab70524db47abb9c384a368a0fe3aa759e03 Author: Marcel Hollerbach <[email protected]> Date: Fri Mar 31 19:56:36 2017 +0200 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. --- src/lib/elementary/elc_combobox.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/elementary/elc_combobox.c b/src/lib/elementary/elc_combobox.c index 5977bfe..1543181 100644 --- a/src/lib/elementary/elc_combobox.c +++ b/src/lib/elementary/elc_combobox.c @@ -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); --
