edje: description.max can be -1

also add myself to AUTHORS

SVN revision: 63753
This commit is contained in:
Boris Faure 2011-10-02 21:07:54 +00:00
parent 182a9f9eed
commit 56c20bff47
2 changed files with 3 additions and 2 deletions

View File

@ -17,3 +17,4 @@ Aharon Hillel <a.hillel@partner.samsung.com>
Shilpa Singh <shilpa.singh@samsung.com> <shilpasingh.o@gmail.com>
Mike Blumenkrantz <mike@zentific.com
Jaehwan Kim <jae.hwan.kim@samsung.com>
billiob (Boris Faure) <billiob@gmail.com>

View File

@ -4321,8 +4321,8 @@ st_collections_group_parts_part_description_max(void)
{
check_arg_count(2);
current_desc->max.w = parse_float_range(0, 0, 0x7fffffff);
current_desc->max.h = parse_float_range(1, 0, 0x7fffffff);
current_desc->max.w = parse_float_range(0, -1.0, 0x7fffffff);
current_desc->max.h = parse_float_range(1, -1.0, 0x7fffffff);
}
/**