/* if so what and where and add the appropriate redraw rectangles */
Evas_Public_Data *e = obj->layer->evas;
- if ((o->cur->fill.w < 1) || (o->cur->fill.h < 1))
- {
- ERR("%p has invalid fill size: %dx%d. Ignored",
- eo_obj, o->cur->fill.w, o->cur->fill.h);
- return;
- }
+ if ((o->cur->fill.w < 1) || (o->cur->fill.h < 1)) return;
/* if someone is clipping this obj - go calculate the clipper */
if (obj->cur->clipper)
Evas_Coord w, h;
evas_object_geometry_get(obj, NULL, NULL, &w, &h);
+ if (w < 1) w = 1;
+ if (h < 1) h = 1;
evas_object_image_fill_set(obj, 0, 0, w, h);
}