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-03-31 19:56:36 +0200
commita266218bb8dd886a031bbc1a1cf5f94bea972883 (patch)
tree8734dedf3135af8c1a78431158485517277cf812
parent7698dfcf1b9a35aa2ff545edd02cdfa7096a8064 (diff)
downloadefl-a266218bb8dd886a031bbc1a1cf5f94bea972883.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);