remove 2 pointless stacks. evas smart obj chiuldren are stacked withint the obj

SVN revision: 43705
This commit is contained in:
Carsten Haitzler 2009-11-15 13:20:22 +00:00
parent 3ae0fdc26e
commit e56d4b1623
1 changed files with 2 additions and 2 deletions

View File

@ -246,12 +246,12 @@ _e_table_smart_adopt(E_Smart_Data *sd, Evas_Object *obj)
ti->max.w = 0;
ti->max.h = 0;
evas_object_clip_set(obj, sd->clip);
evas_object_stack_above(obj, sd->obj);
// evas_object_stack_above(obj, sd->obj);
evas_object_smart_member_add(obj, ti->sd->obj);
evas_object_data_set(obj, "e_table_data", ti);
evas_object_event_callback_add(obj, EVAS_CALLBACK_FREE,
_e_table_smart_item_del_hook, NULL);
evas_object_stack_below(obj, sd->obj);
// evas_object_stack_below(obj, sd->obj);
if ((!evas_object_visible_get(sd->clip)) &&
(evas_object_visible_get(sd->obj)))
evas_object_show(sd->clip);