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 62c1af4661c0f643a57857378b467cb509466417
Author: Carsten Haitzler <[email protected]>
AuthorDate: Sun Feb 15 17:16:05 2026 +0000

    e comp - make close button really exit e in e-in-a-window-wl mode
---
 src/bin/e_comp.c | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/src/bin/e_comp.c b/src/bin/e_comp.c
index 035ebeeee..79804f877 100644
--- a/src/bin/e_comp.c
+++ b/src/bin/e_comp.c
@@ -1244,9 +1244,9 @@ _e_comp_resize(void *data EINA_UNUSED, Evas *e EINA_UNUSED, Evas_Object *obj, vo
 }
 
 static void
-_e_comp_delete_request()
+_e_comp_delete_request(void *data EINA_UNUSED, Evas_Object *obj EINA_UNUSED, void *event_info EINA_UNUSED)
 {
-   e_sys_action_do(E_SYS_LOGOUT, NULL);
+   ecore_main_loop_quit();
 }
 
 EINTERN Eina_Bool
@@ -1440,8 +1440,7 @@ out:
    evas_object_event_callback_add(e_comp->elm, EVAS_CALLBACK_RESIZE, _e_comp_resize, NULL);
    elm_win_fullscreen_set(e_comp->elm, 1);
    elm_win_autodel_set(e_comp->elm, 1);
-   if (!e_comp->screen)
-     evas_object_smart_callback_add(e_comp->elm, "delete,request", _e_comp_delete_request, NULL);
+   evas_object_smart_callback_add(e_comp->elm, "delete,request", _e_comp_delete_request, NULL);
    ecore_evas_focus_set(e_comp->ee, 0);
    ecore_evas_focus_set(e_comp->ee, 1);
    evas_object_show(e_comp->elm);

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

Reply via email to