hoversel: don't activate if the items were none.

it's wierd to expand hoversel without items.
the behavior made me suprised before i analyzed it.
it looked almost a bug.

if you have any other objections, please ping me.
This commit is contained in:
Hermet Park 2016-01-08 20:50:01 +09:00
parent 4624fd7ae1
commit 05950e093c
1 changed files with 1 additions and 1 deletions

View File

@ -421,6 +421,7 @@ _activate(Evas_Object *obj)
sd->expanded = EINA_TRUE;
if (elm_widget_disabled_get(obj)) return;
if (!sd->items) return;
sd->hover = elm_hover_add(sd->hover_parent);
elm_widget_sub_object_add(obj, sd->hover);
@ -794,7 +795,6 @@ _elm_hoversel_item_add(Eo *obj, Elm_Hoversel_Data *sd, const char *label, const
snprintf(buf, sizeof(buf), "hoversel_vertical_entry/%s",
elm_widget_style_get(obj));
VIEW(item) = bt = elm_button_add(obj);
elm_widget_mirrored_set(bt, elm_widget_mirrored_get(obj));
elm_object_style_set(bt, buf);