Evas: In the render stage, check obj->is_frame directly. No need for

another function call here. We have to object already available, just
check the property directly.



SVN revision: 75980
This commit is contained in:
Christopher Michael 2012-09-03 08:50:40 +00:00
parent ffafe9bbe0
commit cbedd76a1f
1 changed files with 1 additions and 2 deletions

View File

@ -1385,8 +1385,7 @@ evas_render_updates_internal(Evas *e,
Evas_Object *pclip;
obj = eina_array_data_get(&e->render_objects, i);
if (evas_object_is_frame_object_get(obj))
continue;
if (obj->is_frame) continue;
if (obj->delete_me) continue;