jpeg pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=24b5eedd6d860146b42ddeaff0727e64ad97edad
commit 24b5eedd6d860146b42ddeaff0727e64ad97edad Author: Jean-Philippe Andre <jp.an...@samsung.com> Date: Fri Feb 17 18:15:57 2017 +0900 evas: Remove useless call to evas_object_async_block It's already called from the intercept cb. --- src/lib/evas/canvas/evas_object_main.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/lib/evas/canvas/evas_object_main.c b/src/lib/evas/canvas/evas_object_main.c index 4f32c05..b8f2a84 100644 --- a/src/lib/evas/canvas/evas_object_main.c +++ b/src/lib/evas/canvas/evas_object_main.c @@ -1143,7 +1143,6 @@ _efl_canvas_object_efl_gfx_position_set(Eo *eo_obj, Evas_Object_Protected_Data * Eina_Bool source_invisible = EINA_FALSE; Eina_List *was = NULL; - evas_object_async_block(obj); if (_evas_object_intercept_call(eo_obj, EVAS_OBJECT_INTERCEPT_CB_MOVE, 1, x, y)) return; @@ -1851,7 +1850,6 @@ _efl_canvas_object_efl_gfx_color_set(Eo *eo_obj, Evas_Object_Protected_Data *obj if (EVAS_COLOR_SANITIZE(r, g, b, a)) ERR("Evas only handles premultiplied colors (0 <= R,G,B <= A <= 255)"); - evas_object_async_block(obj); if (_evas_object_intercept_call(eo_obj, EVAS_OBJECT_INTERCEPT_CB_COLOR_SET, 1, r, g, b, a)) return; if ((obj->cur->color.r == r) && (obj->cur->color.g == g) && --