jpeg pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=b564c1f0aef9ef17cb1f6705a8f0f1ee263bd748

commit b564c1f0aef9ef17cb1f6705a8f0f1ee263bd748
Author: Jean-Philippe Andre <jp.an...@samsung.com>
Date:   Thu Mar 24 10:34:52 2016 +0900

    Edje: Fix eo error with call to invalid image method
    
    Only Efl.Canvas.Proxy implements efl_canvas_proxy_source_clip_set.
    Legacy image objects should use legacy APIs.
    
    Thanks @zmike for the report and sorry I never saw the ERR myself :(
    
    Fixes T3342
---
 src/lib/edje/edje_calc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib/edje/edje_calc.c b/src/lib/edje/edje_calc.c
index a8e3f6d..f73c00d 100644
--- a/src/lib/edje/edje_calc.c
+++ b/src/lib/edje/edje_calc.c
@@ -3187,7 +3187,7 @@ _edje_proxy_recalc_apply(Edje *ed, Edje_Real_Part *ep, 
Edje_Calc_Params *p3, Edj
    efl_gfx_fill_set(ep->object, p3->type.common.fill.x, 
p3->type.common.fill.y, p3->type.common.fill.w, p3->type.common.fill.h);
    efl_image_smooth_scale_set(ep->object, p3->smooth);
    evas_object_image_source_visible_set(ep->object, 
chosen_desc->proxy.source_visible);
-   efl_canvas_proxy_source_clip_set(ep->object, 
chosen_desc->proxy.source_clip);
+   evas_object_image_source_clip_set(ep->object, 
chosen_desc->proxy.source_clip);
 }
 
 static void

-- 


Reply via email to