raster pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=2a96a8dbaf251c9b38bd117f8ff6faaac4465d09

commit 2a96a8dbaf251c9b38bd117f8ff6faaac4465d09
Author: Thierry <[email protected]>
Date:   Thu May 14 11:28:02 2020 +0100

    I can not load my preferences shortcuts keyboards. To take them into 
account I must reload e. I came across this error, "e_config_binding_key_match" 
uses "mouse_bindings" instead of "key_bindings". Unfortunately it does not 
change anything to my...
    
    Summary: ...problem.
    
    Reviewers: zmike!, devilhorns, raster
    
    Reviewed By: raster
    
    Subscribers: raster, cedric
    
    Tags: #enlightenment-git
    
    Differential Revision: https://phab.enlightenment.org/D6997
---
 src/bin/e_config.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/bin/e_config.c b/src/bin/e_config.c
index f7c658b00..11a0405ab 100644
--- a/src/bin/e_config.c
+++ b/src/bin/e_config.c
@@ -2242,7 +2242,7 @@ e_config_binding_key_match(E_Config_Binding_Key *eb_in)
    Eina_List *l;
    E_Config_Binding_Key *eb;
 
-   EINA_LIST_FOREACH(e_bindings->mouse_bindings, l, eb)
+   EINA_LIST_FOREACH(e_bindings->key_bindings, l, eb)
      {
         if ((eb->context == eb_in->context) &&
             (eb->modifiers == eb_in->modifiers) &&

-- 


Reply via email to