elm config - fix previous commit missing strdup

oops - accidentally removed the strcpy. fix
This commit is contained in:
Carsten Haitzler 2016-07-12 18:23:12 +09:00
parent 1ec9ee2a92
commit 9f2ba9834e
1 changed files with 1 additions and 0 deletions

View File

@ -2609,6 +2609,7 @@ _elm_config_key_binding_call(Evas_Object *obj,
int i = 0;
namelower = alloca(strlen(name) + 1);
strcpy(namelower, name);
eina_str_tolower(&namelower);
binding_list = eina_hash_find(_elm_key_bindings, namelower);