discomfitor pushed a commit to branch enlightenment-0.21. http://git.enlightenment.org/core/enlightenment.git/commit/?id=514446e620bb1d3598b53d2708ae9c32d3cdf8ed
commit 514446e620bb1d3598b53d2708ae9c32d3cdf8ed Author: Mike Blumenkrantz <zm...@osg.samsung.com> Date: Fri Aug 18 15:52:52 2017 -0400 always align ibar inner box to the left fix T5041 --- src/modules/ibar/e_mod_main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/ibar/e_mod_main.c b/src/modules/ibar/e_mod_main.c index d8909c916..648220c9e 100644 --- a/src/modules/ibar/e_mod_main.c +++ b/src/modules/ibar/e_mod_main.c @@ -425,10 +425,10 @@ _ibar_new(Evas_Object *parent, Instance *inst) elm_box_align_set(b->o_outerbox, 0.5, 0.5); b->o_box = elm_box_add(e_win_evas_object_win_get(parent)); E_EXPAND(b->o_box); - E_FILL(b->o_box); + E_ALIGN(b->o_box, 0, EVAS_HINT_FILL); elm_box_homogeneous_set(b->o_box, 1); elm_box_horizontal_set(b->o_box, 1); - elm_box_align_set(b->o_box, 0.5, 0.5); + elm_box_align_set(b->o_box, 0, 0.5); elm_box_pack_end(b->o_outerbox, b->o_box); if (inst->ci->dir[0] != '/') e_user_dir_snprintf(buf, sizeof(buf), "applications/bar/%s/.order", --