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 e154c0bbdb5fe34c16e0613cb6b944e3c4f67559
Author: Alastair Poole <[email protected]>
AuthorDate: Sat Apr 18 20:37:29 2026 +0100

    ibox: no need to track client add events.
    
    This module isn't interested in these. Remove.
---
 src/modules/ibox/e_mod_main.c | 12 ------------
 1 file changed, 12 deletions(-)

diff --git a/src/modules/ibox/e_mod_main.c b/src/modules/ibox/e_mod_main.c
index 13ab65da0..65cb00c30 100644
--- a/src/modules/ibox/e_mod_main.c
+++ b/src/modules/ibox/e_mod_main.c
@@ -111,7 +111,6 @@ static void         _ibox_inst_cb_scroll(void *data);
 static void         _ibox_mouse_move_eval(IBox *b);
 static Eina_Bool    _ibox_refill_timer(void *data);
 static void         _ibox_refill_all(void);
-static Eina_Bool    _ibox_cb_event_client_add(void *data, int type, void *event);
 static Eina_Bool    _ibox_cb_event_client_remove(void *data, int type, void *event);
 static Eina_Bool    _ibox_cb_event_client_iconify(void *data, int type, void *event);
 static Eina_Bool    _ibox_cb_event_client_uniconify(void *data, int type, void *event);
@@ -1177,16 +1176,6 @@ atend:
    _gc_orient(inst->gcc, -1);
 }
 
-static Eina_Bool
-_ibox_cb_event_client_add(void *data EINA_UNUSED, int type EINA_UNUSED, void *event)
-{
-   E_Event_Client *ev = event;
-
-   if (!ev->ec->iconic) return ECORE_CALLBACK_RENEW;
-   _ibox_refill_all();
-   return ECORE_CALLBACK_PASS_ON;
-}
-
 static Eina_Bool
 _ibox_cb_event_client_remove(void *data EINA_UNUSED, int type EINA_UNUSED, void *event EINA_UNUSED)
 {
@@ -1389,7 +1378,6 @@ e_modapi_init(E_Module *m)
 
    ibox_config->module = m;
 
-   E_LIST_HANDLER_APPEND(ibox_config->handlers, E_EVENT_CLIENT_ADD, _ibox_cb_event_client_add, NULL);
    E_LIST_HANDLER_APPEND(ibox_config->handlers, E_EVENT_CLIENT_REMOVE, _ibox_cb_event_client_remove, NULL);
    E_LIST_HANDLER_APPEND(ibox_config->handlers, E_EVENT_CLIENT_ICONIFY, _ibox_cb_event_client_iconify, NULL);
    E_LIST_HANDLER_APPEND(ibox_config->handlers, E_EVENT_CLIENT_UNICONIFY, _ibox_cb_event_client_uniconify, NULL);

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

Reply via email to