Revert "handle_legacy_sla() is moved into handle_legacy_composite()"

This reverts commit 1bc395cac25aa61b2ba6492fb3114675d57cc6e3.
This commit is contained in:
Lukas Matena 2025-02-06 16:01:32 +01:00
parent 0968ffee65
commit ba00b27dcd
2 changed files with 1 additions and 3 deletions

View File

@ -334,7 +334,7 @@ void Preset::normalize(DynamicPrintConfig &config)
first_layer_height->percent = false;
}
// handle_legacy_sla(config); // it looks like the best place for call it, is handle_legacy_composite
handle_legacy_sla(config);
}
std::string Preset::remove_invalid_keys(DynamicPrintConfig &config, const DynamicPrintConfig &default_config)

View File

@ -5086,8 +5086,6 @@ void PrintConfigDef::handle_legacy_composite(DynamicPrintConfig &config)
}
config.set_key_value("wiping_volumes_use_custom_matrix", new ConfigOptionBool(custom));
}
handle_legacy_sla(config);
}
const PrintConfigDef print_config_def;