FIX: fix the extruder_type error

jira: none
Change-Id: Iff97613b5dd0c76f9883c031ab396cd27a27b20d
This commit is contained in:
zhimin.zeng 2024-11-25 22:06:12 +08:00 committed by lane.wei
parent c17b4b78f3
commit 10d9c12202
1 changed files with 2 additions and 1 deletions

View File

@ -5195,7 +5195,8 @@ void PrintConfigDef::handle_legacy(t_config_option_key &opt_key, std::string &va
|| opt_key == "extruder_variant_list") {
ReplaceString(value, "Normal", "Standard");
ReplaceString(value, "Big Traffic", "High Flow");
} else if (opt_key == "nozzle_volume_type") {
}
else if (opt_key == "extruder_type") {
ReplaceString(value, "DirectDrive", "Direct Drive");
}