Skip to content

Commit

Permalink
Make monotonic infill default for bottom layers as well #4963
Browse files Browse the repository at this point in the history
  • Loading branch information
bubnikv committed Nov 20, 2020
1 parent 54a5c1d commit 56c37d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libslic3r/PrintConfig.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down

0 comments on commit 56c37d5

Please sign in to comment.