Make monotonic infill default for bottom layers as well #4963

This commit is contained in:
Vojtech Bubnik 2020-11-20 18:58:54 +01:00
parent 54a5c1da1e
commit 56c37d5c38

View file

@ -483,7 +483,7 @@ void PrintConfigDef::init_fff_params()
def->enum_values = def_top_fill_pattern->enum_values;
def->enum_labels = def_top_fill_pattern->enum_labels;
def->aliases = def_top_fill_pattern->aliases;
def->set_default_value(new ConfigOptionEnum<InfillPattern>(ipRectilinear));
def->set_default_value(new ConfigOptionEnum<InfillPattern>(ipMonotonic));
def = this->add("external_perimeter_extrusion_width", coFloatOrPercent);
def->label = L("External perimeters");