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 d400c33c2fb2a1e79cdc0d562a4d3f36ae353357
Author: Carsten Haitzler <ras...@rasterman.com>
AuthorDate: Wed Jan 1 14:33:33 2025 +0000
appmenu module - fix shutdown to unregister gadcon
---
src/modules/appmenu/e_mod_main.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/src/modules/appmenu/e_mod_main.c b/src/modules/appmenu/e_mod_main.c
index 6fe826e2e..d94ec6669 100644
--- a/src/modules/appmenu/e_mod_main.c
+++ b/src/modules/appmenu/e_mod_main.c
@@ -191,10 +191,13 @@ e_modapi_shutdown(E_Module *m)
E_AppMenu_Window *w;
Eina_List *l, *l2;
+ EINA_SAFETY_ON_NULL_RETURN_VAL(ctxt, 0);
+
ecore_event_handler_del(ctxt->events[0]);
ecore_event_handler_del(ctxt->events[1]);
- EINA_SAFETY_ON_NULL_RETURN_VAL(ctxt, 0);
+ e_gadcon_provider_unregister(&_gc_class);
+
EINA_LIST_FOREACH_SAFE(ctxt->windows, l, l2, w)
appmenu_window_free(w);
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.