diff options
author | Mike Blumenkrantz <zmike@osg.samsung.com> | 2015-01-20 19:20:04 -0500 |
---|---|---|
committer | Mike Blumenkrantz <zmike@osg.samsung.com> | 2015-01-20 19:20:04 -0500 |
commit | f691a8fa183cd7351495f59d88701b7967a87f38 (patch) | |
tree | 8debb8cebe10d2121dbec6a452939eb27b7ab044 /src/modules/ibar/e_mod_main.c | |
parent | 017c2f4d45c86c81f8069c02b03438d5168d4d89 (diff) | |
download | enlightenment-f691a8fa183cd7351495f59d88701b7967a87f38.tar.gz |
fix elm box parenting
Diffstat (limited to 'src/modules/ibar/e_mod_main.c')
-rw-r--r-- | src/modules/ibar/e_mod_main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/ibar/e_mod_main.c b/src/modules/ibar/e_mod_main.c index 8a8a7c8109..1bc249c80d 100644 --- a/src/modules/ibar/e_mod_main.c +++ b/src/modules/ibar/e_mod_main.c @@ -402,10 +402,10 @@ _ibar_new(Evas_Object *parent, Instance *inst) inst->ibar = b; b->inst = inst; b->icon_hash = eina_hash_string_superfast_new(NULL); - b->o_outerbox = elm_box_add(parent); + b->o_outerbox = elm_box_add(e_win_evas_object_win_get(parent)); elm_box_horizontal_set(b->o_outerbox, 1); elm_box_align_set(b->o_outerbox, 0.5, 0.5); - b->o_box = elm_box_add(parent); + b->o_box = elm_box_add(e_win_evas_object_win_get(parent)); E_EXPAND(b->o_box); E_FILL(b->o_box); elm_box_homogeneous_set(b->o_box, 1); |