oops lost the elm widget sub ob add call. fixed.

SVN revision: 59484
This commit is contained in:
Carsten Haitzler 2011-05-18 07:29:32 +00:00
parent 72fca358dd
commit 3caf7e40e1
1 changed files with 1 additions and 0 deletions

View File

@ -135,6 +135,7 @@ elm_grid_pack(Evas_Object *obj, Evas_Object *subobj, int x, int y, int w, int h)
ELM_CHECK_WIDTYPE(obj, widtype);
Widget_Data *wd = elm_widget_data_get(obj);
if (!wd) return;
elm_widget_sub_object_add(obj, subobj);
evas_object_grid_pack(wd->grd, subobj, x, y, w, h);
}