Enforce seam_position: aligned for retraction calibration (#11346)

Set seam position to aligned instead of profile default for retraction calibration
This commit is contained in:
Ioannis Giannakas 2025-11-14 08:25:30 +00:00 committed by GitHub
commit 122934d8da
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -12394,6 +12394,7 @@ void Plater::calib_retraction(const Calib_Params& params)
print_config->set_key_value("initial_layer_print_height", new ConfigOptionFloat(layer_height));
obj->config.set_key_value("layer_height", new ConfigOptionFloat(layer_height));
obj->config.set_key_value("alternate_extra_wall", new ConfigOptionBool(false));
obj->config.set_key_value("seam_position", new ConfigOptionEnum<SeamPosition>(spAligned));
changed_objects({ 0 });