edje: fix border limit bug.

This commit is contained in:
Cedric BAIL 2013-03-26 11:59:10 +09:00
parent d583d08814
commit 5081098925
1 changed files with 1 additions and 1 deletions

View File

@ -901,7 +901,7 @@ _edje_object_file_set_internal(Evas_Object *obj, const char *file, const char *g
_edje_object_pack_item_hints_set(child_obj, &pack_it_copy);
if (pack_it_copy.spread.h >= 1 && pack_it_copy.spread.w > 1)
if (pack_it_copy.spread.h > 0 && pack_it_copy.spread.w > 0)
{
buf = eina_strbuf_new();
if (name)