From 9661ab70524db47abb9c384a368a0fe3aa759e03 Mon Sep 17 00:00:00 2001 From: Marcel Hollerbach Date: Fri, 31 Mar 2017 19:56:36 +0200 Subject: [PATCH] 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 5977bfe760..154318178c 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);