evas - fix the wrong compare. thanks JackDanielZ for spotting it.

This commit is contained in:
ChunEon Park 2013-04-30 19:51:24 +09:00
parent c71edd740c
commit 29ef0f71ba
1 changed files with 1 additions and 1 deletions

View File

@ -969,7 +969,7 @@ evas_render_mapped(Evas_Public_Data *e, Evas_Object *eo_obj,
} }
else else
{ {
if (proxy_obj == obj) if (proxy_obj == eo_obj)
eo_do(proxy_obj, evas_obj_image_source_clip_get(&proxy_src_clip)); eo_do(proxy_obj, evas_obj_image_source_clip_get(&proxy_src_clip));
} }