From: Carsten Haitzler (Rasterman) Date: Mon, 14 Oct 2013 03:41:28 +0000 (+0900) Subject: evas - small buglet. image size of up to but NOT including 32768 are valid X-Git-Tag: submit/devel/efl/20131029.075644~81 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a01ba5718d73d5102f3bf602d7799d28c0546c93;p=platform%2Fupstream%2Fefl.git evas - small buglet. image size of up to but NOT including 32768 are valid --- diff --git a/src/lib/evas/canvas/evas_object_image.c b/src/lib/evas/canvas/evas_object_image.c index 00c1cf6..5b2ef93 100644 --- a/src/lib/evas/canvas/evas_object_image.c +++ b/src/lib/evas/canvas/evas_object_image.c @@ -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;