Evas: Fix evas build from botched copy/paste.

Apologies, I pasted the code in the wrong position :(



SVN revision: 74740
This commit is contained in:
Christopher Michael 2012-08-01 14:32:26 +00:00
parent 2a32afd20b
commit 15a9aa0950
1 changed files with 2 additions and 2 deletions

View File

@ -1392,8 +1392,6 @@ evas_render_updates_internal(Evas *e,
}
}
if (obj->delete_me) continue;
EINA_RECTANGLE_SET(&clip_rect,
e->framespace.clip->cur.geometry.x,
e->framespace.clip->cur.geometry.y,
@ -1414,6 +1412,8 @@ evas_render_updates_internal(Evas *e,
if (evas_object_is_frame_object_get(obj))
continue;
if (obj->delete_me) continue;
EINA_RECTANGLE_SET(&obj_rect,
obj->cur.geometry.x, obj->cur.geometry.y,
obj->cur.geometry.w, obj->cur.geometry.h);