From 6828cf2e29572285180199048effe4e5c56e0f2b Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Fri, 28 Jun 2013 17:25:30 +0900 Subject: [PATCH] evas: efl 1.8 dev bug only... update add bug in image objects throws away some updates. --- src/lib/evas/canvas/evas_object_image.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/evas/canvas/evas_object_image.c b/src/lib/evas/canvas/evas_object_image.c index 338c180..2eea07d 100644 --- a/src/lib/evas/canvas/evas_object_image.c +++ b/src/lib/evas/canvas/evas_object_image.c @@ -1819,7 +1819,7 @@ _image_data_update_add(Eo *eo_obj, void *_pd, va_list *list) { // detect single blob case already there to do a nop if ((r = o->pixels->pixel_updates->data)) { // already a single full rect there. - if ((r->x == 0) && (r->y == 0) && (r->w == w) && (r->h == h)) + if ((r->x == 0) && (r->y == 0) && (r->w == o->cur->image.w) && (r->h == o->cur->image.h)) return; } } -- 2.7.4