edje: make it possible to define part.description.max on only one axis.
authorcedric <cedric@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Tue, 21 Jun 2011 10:41:20 +0000 (10:41 +0000)
committercedric <cedric@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Tue, 21 Jun 2011 10:41:20 +0000 (10:41 +0000)
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@60546 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

ChangeLog
src/bin/edje_cc_handlers.c

index 671c09f..dc2d6eb 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
 
        * Fix an issue with ellipsis not working properly with small
          text parts.
+
+2011-06-21  Cedric Bail
+
+       * Make it possible to define part.description.max only on one axis.
index 6534f99..5bda585 100644 (file)
@@ -3991,7 +3991,7 @@ st_collections_group_parts_part_description_min(void)
     @parameters
         [width] [height]
     @effect
-        The maximum size of the state.
+        The maximum size of the state. A size of -1.0 means that it will be ignored in one direction.
     @endproperty
 */
 static void
@@ -4009,8 +4009,8 @@ st_collections_group_parts_part_description_max(void)
    ed = ep->default_desc;
    if (ep->other.desc_count) ed = ep->other.desc[ep->other.desc_count - 1];
 
-   ed->max.w = parse_float_range(0, 0, 0x7fffffff);
-   ed->max.h = parse_float_range(1, 0, 0x7fffffff);
+   ed->max.w = parse_float_range(0, -1.0, 0x7fffffff);
+   ed->max.h = parse_float_range(1, -1.0, 0x7fffffff);
 }
 
 /**