diff options
author | Mike Blumenkrantz <michael.blumenkrantz@gmail.com> | 2013-02-01 10:21:54 +0000 |
---|---|---|
committer | Mike Blumenkrantz <michael.blumenkrantz@gmail.com> | 2013-02-01 10:21:54 +0000 |
commit | c48fd0b06d22c47228005b0639aad580350bdf26 (patch) | |
tree | 135a9937068791da3c69d50969241008300eb1f7 /src/modules/mixer/e_mod_main.c | |
parent | abe45b31c1ca503970b87f657397dcc3bce35af6 (diff) | |
download | enlightenment-c48fd0b06d22c47228005b0639aad580350bdf26.tar.gz |
giant commit that wipes all bindi^W^W^Wsplits out binding configs into a separate config domain so they can be more easily copied and so they won't be wiped in the event that primary config is wiped
also splits all binding lists out of e_config: they are now conveniently located in the global "e_bindings" struct
SVN revision: 83544
Diffstat (limited to 'src/modules/mixer/e_mod_main.c')
-rw-r--r-- | src/modules/mixer/e_mod_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/mixer/e_mod_main.c b/src/modules/mixer/e_mod_main.c index 796bd2a264..7c29dcf752 100644 --- a/src/modules/mixer/e_mod_main.c +++ b/src/modules/mixer/e_mod_main.c @@ -525,7 +525,7 @@ _mixer_popup_input_window_key_down_cb(void *data, int type __UNUSED__, void *eve E_Binding_Modifier mod; Eina_Bool handled = EINA_FALSE; - EINA_LIST_FOREACH(e_config->key_bindings, l, binding) + EINA_LIST_FOREACH(e_bindings->key_bindings, l, binding) { if (binding->action && (strcmp(binding->action, "volume_increase") && |