SVN revision: 41299
This commit is contained in:
Vincent Torri 2009-07-11 06:07:11 +00:00
parent 5959578954
commit 84be18a101
1 changed files with 1 additions and 1 deletions

View File

@ -1244,7 +1244,7 @@ _edje_box_recalc_apply(Edje *ed, Edje_Real_Part *ep, Edje_Calc_Params *p3, Edje_
evas_object_size_hint_min_get(ep->object, &min_w, &min_h);
if (chosen_desc->box.min.h && (p3->w < min_w))
p3->w = min_w;
if (chosen_desc->box.min.v && (p3->h < min_w))
if (chosen_desc->box.min.v && (p3->h < min_h))
p3->h = min_h;
}