This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch evas-sdl3-rewrite
in repository efl.
View the commit online.
commit b872ecb5b682fc4ec942fbfb3ae105886473021d
Author: Swagtoy <[email protected]>
AuthorDate: Mon Apr 27 01:31:06 2026 -0400
ecore_evas_sdl: Set window title
Signed-off-by: Swagtoy <[email protected]>
---
src/modules/ecore_evas/engines/sdl/ecore_evas_sdl.c | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/src/modules/ecore_evas/engines/sdl/ecore_evas_sdl.c b/src/modules/ecore_evas/engines/sdl/ecore_evas_sdl.c
index b2c0f2c5b7..be2aaa563e 100644
--- a/src/modules/ecore_evas/engines/sdl/ecore_evas_sdl.c
+++ b/src/modules/ecore_evas/engines/sdl/ecore_evas_sdl.c
@@ -365,6 +365,13 @@ _ecore_evas_show(Ecore_Evas *ee)
evas_event_feed_mouse_in(ee->evas, (unsigned int)((unsigned long long)(ecore_time_get() * 1000.0) & 0xffffffff), NULL);
}
+static void
+_ecore_evas_title_set(Ecore_Evas *ee, const char *t)
+{
+ Ecore_Evas_SDL_Switch_Data *swd = (Ecore_Evas_SDL_Switch_Data*)(ee + 1);
+ SDL_SetWindowTitle(swd->w, t);
+}
+
static Ecore_Evas_Engine_Func _ecore_sdl_engine_func =
{
_ecore_evas_sdl_free,
@@ -393,7 +400,7 @@ static Ecore_Evas_Engine_Func _ecore_sdl_engine_func =
NULL,
NULL,
NULL,
- NULL,
+ _ecore_evas_title_set,
NULL,
NULL,
NULL,
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.