elm list had a typo which seemed harmless but probably broke some things. I corrected it. don't have a full checkout here, so no backporting unless someone else does it or I remember to do it later

SVN revision: 71465
This commit is contained in:
Mike Blumenkrantz 2012-05-28 17:51:02 +00:00
parent 195149bd32
commit 7ecc19fbae
2 changed files with 4 additions and 1 deletions

View File

@ -106,3 +106,6 @@
* Refactor X11 specific code to use ecore_evas_*_window_get functions
so that the driver for the Ecore_Evas will be checked.
2012-05-28 Mike Blumenkrantz
* Fix sizing calc error in list item homogenizing

View File

@ -1301,7 +1301,7 @@ _fix_items(Evas_Object *obj)
}
if ((minw[0] != wd->minw[0]) || (minw[1] != wd->minw[1]) ||
(minw[0] != wd->minh[0]) || (minh[1] != wd->minh[1]))
(minh[0] != wd->minh[0]) || (minh[1] != wd->minh[1]))
{
wd->minw[0] = minw[0];
wd->minw[1] = minw[1];