restack swallowed objects too

SVN revision: 44030
This commit is contained in:
Iván Briano 2009-11-27 20:34:43 +00:00
parent 407c62cb7f
commit da589aaae7
1 changed files with 4 additions and 0 deletions

View File

@ -1823,6 +1823,8 @@ edje_edit_part_restack_below(Evas_Object *obj, const char* part)
_edje_parts_id_switch(ed, rp, prev);
evas_object_stack_below(rp->object, prev->object);
if (rp->swallowed_object)
evas_object_stack_above(rp->swallowed_object, rp->object);
return 1;
}
@ -1850,6 +1852,8 @@ edje_edit_part_restack_above(Evas_Object *obj, const char* part)
_edje_parts_id_switch(ed, rp, next);
evas_object_stack_above(rp->object, next->object);
if (rp->swallowed_object)
evas_object_stack_above(rp->swallowed_object, rp->object);
return 1;
}