E_Config: Fix auto load of luncher

This fixes T5007 https://phab.enlightenment.org/T5007
This commit is contained in:
Stephen 'Okra' Houston 2016-12-15 09:00:35 -06:00
parent 46ae444069
commit 30ba420c6d
1 changed files with 7 additions and 7 deletions

View File

@ -1466,14 +1466,14 @@ e_config_load(void)
ibar_en = EINA_TRUE;
else if (eina_streq(em->name, "luncher"))
luncher_en = EINA_TRUE;
if (ibar_en && !luncher_en)
{
module = E_NEW(E_Config_Module, 1);
module->name = eina_stringshare_add("luncher");
module->enabled = 1;
e_config->modules = eina_list_append(e_config->modules, module);
}
}
if (ibar_en && !luncher_en)
{
module = E_NEW(E_Config_Module, 1);
module->name = eina_stringshare_add("luncher");
module->enabled = 1;
e_config->modules = eina_list_append(e_config->modules, module);
}
}
}
if (!e_config->remember_internal_fm_windows)