raster pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=22d5f604f34673a569b8276c0922573cf79a9a5c
commit 22d5f604f34673a569b8276c0922573cf79a9a5c Author: Carsten Haitzler (Rasterman) <[email protected]> Date: Tue Nov 26 08:32:49 2013 +0900 wizard - protect min size calc against missing group complaints if someone were to ... replace the default theme... and would be missing groups... in theory the min size calc may fail thus leaving min w/h unset, so just set them anyway. --- src/modules/wizard/e_wizard.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/wizard/e_wizard.c b/src/modules/wizard/e_wizard.c index f9ec301..cd3bd6e 100644 --- a/src/modules/wizard/e_wizard.c +++ b/src/modules/wizard/e_wizard.c @@ -163,7 +163,7 @@ e_wizard_page_show(Evas_Object *obj) o_content = obj; if (obj) { - Evas_Coord minw, minh; + Evas_Coord minw = 0, minh = 0; e_widget_size_min_get(obj, &minw, &minh); edje_extern_object_min_size_set(obj, minw, minh); --
