jpeg pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=3f84aac424ae275df120e181018702ad0b43ae26
commit 3f84aac424ae275df120e181018702ad0b43ae26 Author: Jaeyong Hwang <[email protected]> Date: Tue Jan 3 16:08:56 2017 +0900 evas: Add code to change the object's chage flag in evas_object_image_data_set Summary: When using evas_object_image_data_set(obj, data), if you give the value of data to NULL, the image data is free. However, Since you have not set a flag in the image object to be modified, it will not be processed in the next render loop. Eventually, the image data is erased, but you see the image before it was erased. If evas_object_image_data_update_add() is used to solve this problem, the operation of the function is skipped because the values of w and h in image are 0. So, If data is NULL, I modified it to call evas_object_change() in evas_object_image_data_set(). Test Plan: Sample code {F61599} {F61601} Reviewers: Hermet, jiin.moon, eunue, jpeg Reviewed By: jpeg Subscribers: jpeg, cedric Differential Revision: https://phab.enlightenment.org/D4520 --- src/lib/evas/canvas/evas_image_legacy.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/lib/evas/canvas/evas_image_legacy.c b/src/lib/evas/canvas/evas_image_legacy.c index 719eee7..d73d90c 100644 --- a/src/lib/evas/canvas/evas_image_legacy.c +++ b/src/lib/evas/canvas/evas_image_legacy.c @@ -593,7 +593,11 @@ evas_object_image_data_set(Eo *eo_obj, void *data) else { if (o->engine_data) - ENFN->image_free(ENDT, o->engine_data); + { + ENFN->image_free(ENDT, o->engine_data); + o->changed = EINA_TRUE; + evas_object_change(eo_obj, obj); + } o->load_error = EVAS_LOAD_ERROR_NONE; if ((o->cur->image.w != 0) || (o->cur->image.h != 0)) resize_call = EINA_TRUE; --
