efl: Fix object size constraints calculation in stack layout

Patch by: Henrique Dante de Almeida <hdante@profusion.mobi>



SVN revision: 82647
This commit is contained in:
Henrique Dante de Almeida 2013-01-11 16:54:48 +00:00 committed by Lucas De Marchi
parent 5fbfaf9e10
commit 9c12a58536
1 changed files with 3 additions and 2 deletions

View File

@ -1751,14 +1751,15 @@ _box_layout_stack(Eo *o, void *_pd, va_list *list EINA_UNUSED)
evas_object_geometry_get(child, NULL, NULL, &child_w, &child_h);
new_w = child_w;
new_h = child_h;
if (new_w > top_w) top_w = new_w;
if (new_h > top_h) top_h = new_h;
_layout_set_offset_and_change_dimension_min_max_cell_bounded
(child_w, &new_w, min_w, max_w, ow, &off_x, align_x, pad_l, pad_r);
_layout_set_offset_and_change_dimension_min_max_cell_bounded
(child_h, &new_h, min_h, max_h, oh, &off_y, align_y, pad_t, pad_b);
if (new_w > top_w) top_w = new_w;
if (new_h > top_h) top_h = new_h;
if ((new_w != child_w) || (new_h != child_h))
evas_object_resize(child, new_w, new_h);
evas_object_move(child, ox + off_x, oy + off_y);