From 2a96a8dbaf251c9b38bd117f8ff6faaac4465d09 Mon Sep 17 00:00:00 2001 From: Thierry Date: Thu, 14 May 2020 11:28:02 +0100 Subject: [PATCH] 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) &&