attempt to load default e_bindings if initial load fails

This commit is contained in:
Mike Blumenkrantz 2015-10-05 15:56:28 -04:00
parent be49b11bd3
commit a6408d95a6
1 changed files with 1 additions and 1 deletions

View File

@ -1085,7 +1085,7 @@ e_config_load(void)
else
e_bindings = e_config_domain_load("e_bindings", _e_config_binding_edd);
if (e_bindings && (e_bindings->config_version != E_CONFIG_BINDINGS_VERSION))
if ((!e_bindings) || (e_bindings->config_version != E_CONFIG_BINDINGS_VERSION))
{
Eina_Stringshare *prof;