discomfitor pushed a commit to branch enlightenment-0.19. http://git.enlightenment.org/core/enlightenment.git/commit/?id=aa665020e67c232f9694c70bab3d81ac99cde56d
commit aa665020e67c232f9694c70bab3d81ac99cde56d Author: Mike Blumenkrantz <zm...@osg.samsung.com> Date: Thu Sep 24 16:04:29 2015 -0400 set comp object client_inset.calc based on frame_object existence --- src/bin/e_comp_object.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_comp_object.c b/src/bin/e_comp_object.c index 9df477b..900254a 100644 --- a/src/bin/e_comp_object.c +++ b/src/bin/e_comp_object.c @@ -1563,7 +1563,7 @@ _e_comp_object_frame_recalc(E_Comp_Object *cw) cw->client_inset.t = 0; cw->client_inset.b = 0; } - cw->client_inset.calc = 1; + cw->client_inset.calc = !!cw->frame_object; } static void --