summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Hollerbach <marcel-hollerbach@t-online.de>2017-03-31 19:56:36 +0200
committerMarcel Hollerbach <marcel-hollerbach@t-online.de>2017-04-01 10:41:35 +0200
commit9661ab70524db47abb9c384a368a0fe3aa759e03 (patch)
treebb3dda6a523d3c5e58ddd1685b2f0eeb38b2c140
parent4ef3f6366f242479ad459aefbcd130e12ac28cc7 (diff)
downloadefl-9661ab70524db47abb9c384a368a0fe3aa759e03.tar.gz
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.
-rw-r--r--src/lib/elementary/elc_combobox.c1
1 files changed, 1 insertions, 0 deletions
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);