Skip to content

Commit

Permalink
Set drop-down default to 200% for first layer extrusion width
Browse files Browse the repository at this point in the history
Previous drop-down default was `0` which is shorthand for auto-calculate. This is different from previous behavior. The default option should match the actual defaults and auto has been added as a dropdown option.
  • Loading branch information
lordofhyphens authored Jun 28, 2018
1 parent 354b623 commit 12aa06e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion xs/src/libslic3r/PrintConfig.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -567,8 +567,10 @@ PrintConfigDef::PrintConfigDef()
def->cli = "first-layer-extrusion-width=s";
def->ratio_over = "first_layer_height";
def->min = 0;
def->enum_values.push_back("0");
def->enum_values.push_back("200%");
def->enum_labels.push_back("default");
def->enum_values.push_back("0");
def->enum_labels.push_back("auto");
def->default_value = new ConfigOptionFloatOrPercent(200, true);

def = this->add("first_layer_height", coFloatOrPercent);
Expand Down

0 comments on commit 12aa06e

Please sign in to comment.