From 68b54027565e32a40c88e7f87b9f6fb6fd9b9b2f Mon Sep 17 00:00:00 2001 From: Cedric BAIL Date: Tue, 21 Jun 2011 10:41:20 +0000 Subject: [PATCH] edje: make it possible to define part.description.max on only one axis. SVN revision: 60546 --- legacy/edje/ChangeLog | 4 ++++ legacy/edje/src/bin/edje_cc_handlers.c | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/legacy/edje/ChangeLog b/legacy/edje/ChangeLog index 671c09ffb0..dc2d6ebacc 100644 --- a/legacy/edje/ChangeLog +++ b/legacy/edje/ChangeLog @@ -123,3 +123,7 @@ * 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. diff --git a/legacy/edje/src/bin/edje_cc_handlers.c b/legacy/edje/src/bin/edje_cc_handlers.c index 6534f99cc8..5bda5855b3 100644 --- a/legacy/edje/src/bin/edje_cc_handlers.c +++ b/legacy/edje/src/bin/edje_cc_handlers.c @@ -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); } /**