Avoid crossing perimeters max detour could newly be specified

in percentage of the direct path.
This commit is contained in:
Vojtech Bubnik 2020-12-14 12:36:55 +01:00
parent fef729b75a
commit 530148575b
3 changed files with 14 additions and 6 deletions

View file

@ -188,11 +188,12 @@ void PrintConfigDef::init_fff_params()
def->label = L("Avoid crossing perimeters - Max detour length");
def->category = L("Layers and Perimeters");
def->tooltip = L("The maximum detour length for avoid crossing perimeters. "
"If the detour is longer than this value, avoid crossing perimeters is not applied for this path.");
"If the detour is longer than this value, avoid crossing perimeters is not applied for this travel path. "
"Detour length could be specified either as an absolute value or as percentage (for example 50%) of a direct travel path.");
def->sidetext = L("mm (zero to disable)");
def->min = 0;
def->mode = comExpert;
def->set_default_value(new ConfigOptionFloat(0.));
def->set_default_value(new ConfigOptionFloatOrPercent(0.));
def = this->add("bed_temperature", coInts);
def->label = L("Other layers");