evas - small buglet. image size of up to but NOT including 32768 are valid
authorCarsten Haitzler (Rasterman) <raster@rasterman.com>
Mon, 14 Oct 2013 03:41:28 +0000 (12:41 +0900)
committerCarsten Haitzler (Rasterman) <raster@rasterman.com>
Mon, 14 Oct 2013 03:41:28 +0000 (12:41 +0900)
src/lib/evas/canvas/evas_object_image.c

index 00c1cf6..5b2ef93 100644 (file)
@@ -1258,8 +1258,8 @@ _image_size_set(Eo *eo_obj, void *_pd, va_list *list)
    _evas_object_image_cleanup(eo_obj, obj, o);
    if (w < 1) w = 1;
    if (h < 1) h = 1;
-   if (w > 32768) return;
-   if (h > 32768) return;
+   if (w >= 32768) return;
+   if (h >= 32768) return;
    if ((w == o->cur->image.w) &&
        (h == o->cur->image.h)) return;