From 7e3ba8e2f33641f5e0a95121644f557e89a7bacc Mon Sep 17 00:00:00 2001 From: SoftFever Date: Mon, 16 Feb 2026 20:58:34 +0800 Subject: [PATCH] fix a regression is extruder clearance use the wrong value --- src/libslic3r/PrintConfig.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index 8762e6f574..ff14c237ce 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -7655,7 +7655,7 @@ void PrintConfigDef::handle_legacy(t_config_option_key &opt_key, std::string &va opt_key = "wipe_tower_rib_width"; } else if (opt_key == "prime_tower_fillet_wall") { opt_key = "wipe_tower_fillet_wall"; - } else if (opt_key == "extruder_clearance_max_radius") { + } else if (opt_key == "extruder_clearance_dist_to_rod") { opt_key = "extruder_clearance_radius"; } else if (opt_key == "machine_switch_extruder_time") { opt_key = "machine_tool_change_time";