[elm] Init fix for bubble.

SVN revision: 74013
This commit is contained in:
Gustavo Lima Chaves 2012-07-17 18:44:55 +00:00
parent a1780e5677
commit 96dddcd203
1 changed files with 2 additions and 2 deletions

View File

@ -173,6 +173,8 @@ _elm_bubble_smart_add(Evas_Object *obj)
_on_mouse_up, obj);
elm_layout_theme_set(obj, "bubble", "base", elm_widget_style_get(obj));
elm_layout_sizing_eval(obj);
}
static void
@ -206,8 +208,6 @@ elm_bubble_add(Evas_Object *parent)
if (!elm_widget_sub_object_add(parent, obj))
ERR("could not add %p as sub object of %p", obj, parent);
elm_layout_sizing_eval(obj);
return obj;
}