Merge pull request #38876 from paulloz/fix-import-params-error
Fix error with 'params' when import dock doesn't define any parameter
This commit is contained in:
commit
55377aa559
@ -441,7 +441,9 @@ void ImportDock::_reimport() {
|
||||
} else {
|
||||
//override entirely
|
||||
config->set_value("remap", "importer", importer_name);
|
||||
config->erase_section("params");
|
||||
if (config->has_section("params")) {
|
||||
config->erase_section("params");
|
||||
}
|
||||
|
||||
for (List<PropertyInfo>::Element *E = params->properties.front(); E; E = E->next()) {
|
||||
config->set_value("params", E->get().name, params->values[E->get().name]);
|
||||
|
Loading…
Reference in New Issue
Block a user