evas - table - fix copy and paste bug in table min size limiting

logically dead code find pointed out a bug in min size limiting in
homogenouse table layout in evas - fix CID 1039457
This commit is contained in:
Carsten Haitzler 2014-08-27 12:39:51 +09:00
parent 2fe5b511fd
commit 6c758594a7
1 changed files with 1 additions and 1 deletions

View File

@ -480,7 +480,7 @@ _evas_object_table_calculate_layout_homogeneous(Evas_Object *o, Evas_Table_Data
hh = h - ((priv->size.rows - 1) * priv->pad.v);
if (ww < 0) ww = 0;
if (ww < 0) ww = 0;
if (hh < 0) hh = 0;
EINA_LIST_FOREACH(priv->children, l, opt)
{