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_I9500_20120323_1~17^2~2739 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2b5b008c5e5c9036dcbb062f51c805adef590523;p=framework%2Fuifw%2Felementary.git oops lost the elm widget sub ob add call. fixed. git-svn-id: svn+ssh://svn.enlightenment.org/var/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); }