min size of a win is NOT -1!!

SVN revision: 61948
This commit is contained in:
Carsten Haitzler 2011-08-01 12:19:36 +00:00
parent 90adda213d
commit 1de22e3806
1 changed files with 2 additions and 2 deletions

View File

@ -786,8 +786,8 @@ _elm_win_eval_subobjs(Evas_Object *obj)
if (wy == 0.0) xy = 0;
evas_object_size_hint_min_get(child, &w, &h);
if (w < 1) w = -1;
if (h < 1) h = -1;
if (w < 1) w = 1;
if (h < 1) h = 1;
if (w > minw) minw = w;
if (h > minh) minh = h;