Remove "ensure_vertical_shell_thickenss" option, it is now permanently ON

This commit is contained in:
PavelMikus 2023-03-03 10:51:36 +01:00
parent ce3ae01c52
commit d5a1b59869
6 changed files with 17 additions and 192 deletions
src/libslic3r

View file

@ -806,14 +806,6 @@ void PrintConfigDef::init_fff_params()
def->mode = comExpert;
def->set_default_value(new ConfigOptionStrings { "; Filament-specific end gcode \n;END gcode for filament\n" });
def = this->add("ensure_vertical_shell_thickness", coBool);
def->label = L("Ensure vertical shell thickness");
def->category = L("Layers and Perimeters");
def->tooltip = L("Add solid infill near sloping surfaces to guarantee the vertical shell thickness "
"(top+bottom solid layers).");
def->mode = comAdvanced;
def->set_default_value(new ConfigOptionBool(false));
auto def_top_fill_pattern = def = this->add("top_fill_pattern", coEnum);
def->label = L("Top fill pattern");
def->category = L("Infill");
@ -4097,6 +4089,8 @@ static std::set<std::string> PrintConfigDef_ignore = {
"fuzzy_skin_perimeter_mode", "fuzzy_skin_shape",
// Introduced in PrusaSlicer 2.3.0-alpha2, later replaced by automatic calculation based on extrusion width.
"wall_add_middle_threshold", "wall_split_middle_threshold",
// Replaced by new concentric ensuring in 2.6.0-alpha5
"ensure_vertical_shell_thickness",
};
void PrintConfigDef::handle_legacy(t_config_option_key &opt_key, std::string &value)