mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-07-30 02:22:03 +08:00
fix crash when loading and a perimeter_loop_seam was set in a previous version.
This commit is contained in:
parent
37bd6e432d
commit
86705d38f1
@ -5298,6 +5298,10 @@ void PrintConfigDef::handle_legacy(t_config_option_key &opt_key, std::string &va
|
||||
value = "20%";
|
||||
}else if ("near" == value || "nearest" == value )
|
||||
value = "cost";
|
||||
} else if (opt_key == "perimeter_loop_seam") {
|
||||
if (value == "hidden") {
|
||||
value = "nearest";
|
||||
}
|
||||
} else if (opt_key == "overhangs") {
|
||||
opt_key = "overhangs_width_speed";
|
||||
if (value == "1")
|
||||
|
Loading…
x
Reference in New Issue
Block a user