instead of just removing comp module on load attempt, replace it with conf_comp and enable it

This commit is contained in:
Mike Blumenkrantz 2013-11-28 09:38:02 -05:00
parent 1d60852734
commit 6253a2f91b
1 changed files with 2 additions and 4 deletions

View File

@ -226,10 +226,8 @@ e_module_all_load(void)
if (!e_util_strcmp(em->name, "comp"))
{
e_config->modules = eina_list_remove_list(e_config->modules, l);
eina_stringshare_del(em->name);
free(em);
continue;
eina_stringshare_replace(&em->name, "conf_comp");
em->enabled = 1;
}
if ((em->delayed) && (em->enabled) && (!e_config->no_module_delay))
{