edje: description.max can be -1
authorbilliob <billiob>
Sun, 2 Oct 2011 21:07:54 +0000 (21:07 +0000)
committerbilliob <billiob@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Sun, 2 Oct 2011 21:07:54 +0000 (21:07 +0000)
also add myself to AUTHORS

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@63753 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

AUTHORS
src/bin/edje_cc_handlers.c

diff --git a/AUTHORS b/AUTHORS
index 265c740..9712dab 100644 (file)
--- a/AUTHORS
+++ b/AUTHORS
@@ -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>
index eddc93d..9191190 100644 (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);
 }
 
 /**