Render smart objects too.

SVN revision: 56765
This commit is contained in:
Brett Nash 2011-02-06 23:50:45 +00:00
parent 068c9144a8
commit 8603177a12
1 changed files with 6 additions and 2 deletions

View File

@ -350,8 +350,12 @@ _proxy_subrender(Evas *e, Evas_Object *source)
ctx = e->engine.func->context_new(e->engine.data.output);
if (source->smart.smart)
{
// EINA_INLIST_FOREACH(evas_object_smart_members_get_direct(source), obj2)
// evas_render_mapped(e, obj2, ctx, surface, 0, 0, 1);
EINA_INLIST_FOREACH(evas_object_smart_members_get_direct(source), obj2){
obj2->func->render(obj2, e->engine.data.output, ctx,
source->proxy.surface,
-source->cur.geometry.x,
-source->cur.geometry.y);
}
}
else
{