From 60dac5f1f4cc2809cf31719ca33f5354ab029585 Mon Sep 17 00:00:00 2001 From: Ian Bassi Date: Tue, 1 Apr 2025 23:10:09 -0300 Subject: [PATCH] Disable FirmwareRetraction in RetractionTest (#9113) Fix issue 8332 Automatically disable firmware retraction when running retraction calibration. --- src/slic3r/GUI/Plater.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index 0fb06a272f..fa02512197 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -10086,6 +10086,7 @@ void Plater::calib_retraction(const Calib_Params& params) if (max_lh->values[0] < layer_height) max_lh->values[0] = { layer_height }; + printer_config->set_key_value("use_firmware_retraction", new ConfigOptionBool(false)); obj->config.set_key_value("wall_loops", new ConfigOptionInt(2)); obj->config.set_key_value("top_shell_layers", new ConfigOptionInt(0)); obj->config.set_key_value("bottom_shell_layers", new ConfigOptionInt(3));