edje_cc: make box/table item.spread minimum 1 1

Minimum value was 0 0, but it has same effect as 1 1.
This commit is contained in:
Andrii Kroitor 2017-10-30 15:50:28 +02:00
parent 2b70897e0f
commit d582b87ba3
1 changed files with 2 additions and 2 deletions

View File

@ -8039,8 +8039,8 @@ static void st_collections_group_parts_part_box_items_item_spread(void)
check_arg_count(2);
current_item->spread.w = parse_int_range(0, 0, 0x7ffffff);
current_item->spread.h = parse_int_range(1, 0, 0x7ffffff);
current_item->spread.w = parse_int_range(0, 1, 0x7ffffff);
current_item->spread.h = parse_int_range(1, 1, 0x7ffffff);
}
/**