comp module now displays a notification when it disables dropshadow module

SVN revision: 72978
This commit is contained in:
Mike Blumenkrantz 2012-06-28 07:18:03 +00:00
parent 10a172162b
commit b9dee04a70
1 changed files with 7 additions and 1 deletions

View File

@ -106,7 +106,13 @@ e_modapi_init(E_Module *m)
EINA_LIST_FOREACH(e_module_list(), l, m2)
{
if (m2->enabled && (!strcmp(m2->name, "dropshadow")))
e_module_disable(m2);
{
e_util_dialog_internal(_("Composite"),
_("Dropshadow module is incompatible<br>"
"with compositing. Disabling the<br>"
"Dropshadow module."));
e_module_disable(m2);
}
}
}