This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository efl.
View the commit online.
commit a501c1bb7103f6456c50dba471a090c8c3706e4d
Author: Carsten Haitzler <[email protected]>
AuthorDate: Thu Jan 8 19:10:15 2026 +0000
ecore evas fb - fix input matching to have lower 32bits of ee ptr
there will be only one so this will do just fine
@fix
---
src/modules/ecore_evas/engines/fb/ecore_evas_fb.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/modules/ecore_evas/engines/fb/ecore_evas_fb.c b/src/modules/ecore_evas/engines/fb/ecore_evas_fb.c
index d92979abb6..5cfd3c1414 100644
--- a/src/modules/ecore_evas/engines/fb/ecore_evas_fb.c
+++ b/src/modules/ecore_evas/engines/fb/ecore_evas_fb.c
@@ -612,7 +612,7 @@ ecore_evas_fb_new_internal(const char *disp_name, int rotation, int w, int h)
ee->prop.fullscreen = EINA_FALSE;
ee->prop.withdrawn = EINA_TRUE;
ee->prop.sticky = EINA_FALSE;
- ee->prop.window = 1;
+ ee->prop.window = (Ecore_Window)ee;
/* init evas here */
if (!ecore_evas_evas_new(ee, w, h))
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.