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

git pushed a commit to branch v-0.25.0
in repository enlightenment.

View the commit online.

commit f4c58caf30e1ef7a757eeb1a970062c5278e17b4
Author: Carsten Haitzler <ras...@rasterman.com>
AuthorDate: Tue Mar 8 01:30:17 2022 +0000

    comp - fix event shape to account for txt/texblock and img properly
    
    @fix
---
 src/bin/e_comp.c | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/src/bin/e_comp.c b/src/bin/e_comp.c
index 252b089a8..541fd4b18 100644
--- a/src/bin/e_comp.c
+++ b/src/bin/e_comp.c
@@ -799,6 +799,13 @@ _tiler_add_input_sub(Evas_Object *par, Eina_Tiler *tb)
                            (!strcmp(type, "textblock"))
                            )
                     {
+                       const char *name = evas_object_name_get(o);
+
+                       evas_object_geometry_get(o, &x, &y, &w, &h);
+                       if ((name) && (!strcmp(name, "cw->obj")))
+                         eina_tiler_rect_del(tb, &(Eina_Rectangle){x, y, w, h});
+                       else
+                         eina_tiler_rect_add(tb, &(Eina_Rectangle){x, y, w, h});
                     }
                   else if ((!strcmp(type, "edje")) ||
                            (!strcmp(type, "e_zoomap")))

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

Reply via email to