- bugfix: endless loop in detection of mod order problems

This commit is contained in:
Tannin
2014-05-04 16:13:35 +02:00
parent 617c76e9f8
commit f56c605479
3 changed files with 28 additions and 22 deletions
-1
View File
@@ -99,7 +99,6 @@ QList<MOBase::PluginSetting> PythonPluginWrapper::settings() const
try {
boost::python::object l = m_SettingsFunction();
if (!l.is_none()) {
// boost::python::list l = extract<boost::python::list>(temp);
for (int i = 0; i < boost::python::len(l); ++i) {
result.append(extract<MOBase::PluginSetting>(l[i]));
}