evas/render - clean up when map is enabled. In this case, it's children should be cleaned up in the list.

SVN revision: 72190
This commit is contained in:
ChunEon Park 2012-06-15 13:29:24 +00:00
parent a8c0af3015
commit 02ededc16a
1 changed files with 3 additions and 3 deletions

View File

@ -507,9 +507,9 @@ _evas_render_check_pending_objects(Eina_Array *pending_objects, Evas *e)
obj = eina_array_data_get(pending_objects, i);
if (!obj->layer) goto clean_stuff;
parent = evas_object_smart_parent_get(obj);
if (parent && _evas_render_has_map(parent))
goto clean_stuff;
//If the children are in active objects, They should be cleaned up.
if (obj->changed_map && _evas_render_has_map(obj))
goto clean_stuff;
evas_object_clip_recalc(obj);
is_active = evas_object_is_active(obj);