mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-06 22:47:32 -06:00
Feature Ironing Inset added (#7969)
This commit is contained in:
parent
ac80575b28
commit
7834f78c90
7 changed files with 26 additions and 6 deletions
|
@ -3082,7 +3082,17 @@ void PrintConfigDef::init_fff_params()
|
|||
def->min = 0;
|
||||
def->max = 1;
|
||||
def->mode = comAdvanced;
|
||||
def->set_default_value(new ConfigOptionFloat(0.1));
|
||||
def->set_default_value(new ConfigOptionFloat(0));
|
||||
|
||||
def = this->add("ironing_inset", coFloat);
|
||||
def->label = L("Ironing inset");
|
||||
def->category = L("Quality");
|
||||
def->tooltip = L("The distance to keep from the edges. A value of 0 sets this to half of the nozzle diameter");
|
||||
def->sidetext = L("mm");
|
||||
def->min = 0;
|
||||
def->max = 100;
|
||||
def->mode = comAdvanced;
|
||||
def->set_default_value(new ConfigOptionFloat(0));
|
||||
|
||||
def = this->add("ironing_speed", coFloat);
|
||||
def->label = L("Ironing speed");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue