Print a warning instead of an error when we can't find a module, since it confuses...
[synfig.git] / synfig-core / trunk / src / synfig / module.cpp
index 8016a9b..7e50d08 100644 (file)
@@ -118,7 +118,7 @@ synfig::Module::Register(const String &module_name, ProgressCallback *callback)
        
        if(!module)
        {
-               if(callback)callback->error(strprintf(_("Unable to find module \"%s\" (%s)"),module_name.c_str(),lt_dlerror()));
+               if(callback)callback->warning(strprintf(_("Unable to find module \"%s\" (%s)"),module_name.c_str(),lt_dlerror()));
                return false;
        }