From 7ecc19fbaeb4fa1d473b2b4839370410b2e1ffc0 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Mon, 28 May 2012 17:51:02 +0000 Subject: [PATCH] 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 --- legacy/elementary/ChangeLog | 3 +++ legacy/elementary/src/lib/elm_list.c | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/legacy/elementary/ChangeLog b/legacy/elementary/ChangeLog index 8805df5048..941330b36a 100644 --- a/legacy/elementary/ChangeLog +++ b/legacy/elementary/ChangeLog @@ -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 diff --git a/legacy/elementary/src/lib/elm_list.c b/legacy/elementary/src/lib/elm_list.c index d370baac54..5eafa451a0 100644 --- a/legacy/elementary/src/lib/elm_list.c +++ b/legacy/elementary/src/lib/elm_list.c @@ -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];