allow group's min to limit the calculated size.

PS: probably other widgets that use swallow should have this, so
objects that have minimum size of 0x0 (like list/genlist) can be
forced to some size using group.min.



SVN revision: 50274
This commit is contained in:
Gustavo Sverzut Barbieri 2010-07-15 23:14:55 +00:00
parent d3656fc2b3
commit c9e3c7dfbc
1 changed files with 2 additions and 1 deletions

View File

@ -184,7 +184,8 @@ _calc(Evas_Object *obj)
Evas_Coord x, y, w, h;
if (!wd) return;
evas_object_geometry_get(obj, &x, &y, &w, &h);
edje_object_size_min_calc(wd->notify, &minw, &minh);
edje_object_size_min_get(wd->notify, &minw, &minh);
edje_object_size_min_restricted_calc(wd->notify, &minw, &minh, minw, minh);
if (wd->content)
{