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 89387f8cb8
commit 3733cb039b
1 changed files with 1 additions and 1 deletions

View File

@ -1089,7 +1089,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;