This is an automated email from the git hooks/post-receive script.

git pushed a commit to branch v-0.27
in repository enlightenment.

View the commit online.

commit e6b654c90ee5de157899747bc6b3e4d772de55df
Author: Carsten Haitzler <ras...@rasterman.com>
AuthorDate: Sat Feb 8 19:39:40 2025 +0000

    e bindings - fix look up of null actions
    
    makes logs quieter - it gets caught by efl anyway - but efl complains.
    
    @fix
---
 src/bin/e_bindings.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/bin/e_bindings.c b/src/bin/e_bindings.c
index de71ecc9b..0a6a1885d 100644
--- a/src/bin/e_bindings.c
+++ b/src/bin/e_bindings.c
@@ -464,6 +464,7 @@ e_bindings_mouse_button_find(E_Binding_Context ctxt, E_Binding_Event_Mouse_Butto
           {
              if (!e_bindings_context_match(binding->ctxt, ctxt)) continue;
              if (act && (binding->ctxt == E_BINDING_CONTEXT_ANY)) continue;
+             if (!binding->action) continue;
              act = e_action_find(binding->action);
              if (bind_ret) *bind_ret = binding;
              if (!act) continue;

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

Reply via email to