From: raster Date: Wed, 18 May 2011 07:29:32 +0000 (+0000) Subject: oops lost the elm widget sub ob add call. fixed. X-Git-Tag: REL_F_I9200_20110722_1~8^2~50^2~331 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a8464f43fdac1261ec7b8e55dd3f949434234bf7;p=framework%2Fuifw%2Felementary.git oops lost the elm widget sub ob add call. fixed. git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@59484 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/src/lib/elm_grid.c b/src/lib/elm_grid.c index c64bce5..4dd3ec0 100644 --- a/src/lib/elm_grid.c +++ b/src/lib/elm_grid.c @@ -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); }