mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-07 15:07:31 -06:00
Add option to enforce first layer min wall width (#1974)
Add option to set first layer min wall width
This commit is contained in:
parent
08cf38e5c9
commit
9e0dbd91ff
6 changed files with 21 additions and 4 deletions
|
@ -3872,6 +3872,16 @@ void PrintConfigDef::init_fff_params()
|
|||
def->min = 0;
|
||||
def->set_default_value(new ConfigOptionPercent(25));
|
||||
|
||||
def = this->add("initial_layer_min_bead_width", coPercent);
|
||||
def->label = L("First layer minimum wall width");
|
||||
def->category = L("Quality");
|
||||
def->tooltip = L("The minimum wall width that should be used for the first layer is recommended to be set "
|
||||
"to the same size as the nozzle. This adjustment is expected to enhance adhesion.");
|
||||
def->sidetext = L("%");
|
||||
def->mode = comAdvanced;
|
||||
def->min = 0;
|
||||
def->set_default_value(new ConfigOptionPercent(85));
|
||||
|
||||
def = this->add("min_bead_width", coPercent);
|
||||
def->label = L("Minimum wall width");
|
||||
def->category = L("Quality");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue