evas: efl 1.8 dev bug only... update add bug in image objects throws away some updates.
authorCarsten Haitzler (Rasterman) <raster@rasterman.com>
Fri, 28 Jun 2013 08:25:30 +0000 (17:25 +0900)
committerCarsten Haitzler (Rasterman) <raster@rasterman.com>
Fri, 28 Jun 2013 08:26:14 +0000 (17:26 +0900)
src/lib/evas/canvas/evas_object_image.c

index 338c180..2eea07d 100644 (file)
@@ -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;
           }
      }