mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-21 13:47:59 -06:00
Default values for brim_offset anf elefant_foot_compensation set to zero
This commit is contained in:
parent
82373334bc
commit
86c1e5c50f
1 changed files with 2 additions and 2 deletions
|
@ -295,7 +295,7 @@ void PrintConfigDef::init_common_params()
|
||||||
def->sidetext = L("mm");
|
def->sidetext = L("mm");
|
||||||
def->min = 0;
|
def->min = 0;
|
||||||
def->mode = comAdvanced;
|
def->mode = comAdvanced;
|
||||||
def->set_default_value(new ConfigOptionFloat(0.2));
|
def->set_default_value(new ConfigOptionFloat(0.));
|
||||||
|
|
||||||
// Options used by physical printers
|
// Options used by physical printers
|
||||||
|
|
||||||
|
@ -495,7 +495,7 @@ void PrintConfigDef::init_fff_params()
|
||||||
def->sidetext = L("mm");
|
def->sidetext = L("mm");
|
||||||
def->min = 0;
|
def->min = 0;
|
||||||
def->mode = comAdvanced;
|
def->mode = comAdvanced;
|
||||||
def->set_default_value(new ConfigOptionFloat(0.1f));
|
def->set_default_value(new ConfigOptionFloat(0.f));
|
||||||
|
|
||||||
def = this->add("clip_multipart_objects", coBool);
|
def = this->add("clip_multipart_objects", coBool);
|
||||||
def->label = L("Clip multi-part objects");
|
def->label = L("Clip multi-part objects");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue