This is an automated email from the git hooks/post-receive script.

git pushed a commit to branch master
in repository enlightenment.

View the commit online.

commit 310adaedf1c6d9fcf52150c2ea1abe5e08c49806
Author: Carsten Haitzler <ras...@rasterman.com>
AuthorDate: Wed Sep 4 11:11:53 2024 +0100

    fix border adjust handling if frame extents is removed to 0 0 0 0
    
    fixes #80
    
    @fix
---
 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 533c49655..010d34d4b 100644
--- a/src/bin/e_comp_object.c
+++ b/src/bin/e_comp_object.c
@@ -3349,7 +3349,7 @@ e_comp_object_frame_geometry_set(Evas_Object *obj, int l, int r, int t, int b)
    if ((cw->client_inset.l == l) && (cw->client_inset.r == r) &&
        (cw->client_inset.t == t) && (cw->client_inset.b == b)) return;
    calc = cw->client_inset.calc;
-   cw->client_inset.calc = l || r || t || b;
+   cw->client_inset.calc = 1;
    eina_stringshare_replace(&cw->frame_theme, "borderless");
    if (cw->client_inset.calc)
      {

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.

Reply via email to