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.
This commit is contained in:
Carsten Haitzler 2013-11-26 08:32:49 +09:00
parent 444c115080
commit 22d5f604f3
1 changed files with 1 additions and 1 deletions

View File

@ -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);