edje: make it possible to define part.description.max on only one axis.

SVN revision: 60546
This commit is contained in:
Cedric BAIL 2011-06-21 10:41:20 +00:00
parent 6f7044b93d
commit 68b5402756
2 changed files with 7 additions and 3 deletions

View File

@ -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.

View 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);
}
/**