Rename/alias --overhangs to --detect-bridging-perimeters to match better the name used in GUI. #3532

This commit is contained in:
Alessandro Ranellucci 2017-03-17 21:15:45 +01:00
parent 6b334e29dc
commit d8a8e0d1c1
2 changed files with 2 additions and 2 deletions

View File

@ -466,7 +466,7 @@ $j
--extra-perimeters Add more perimeters when needed (default: yes) --extra-perimeters Add more perimeters when needed (default: yes)
--avoid-crossing-perimeters Optimize travel moves so that no perimeters are crossed (default: no) --avoid-crossing-perimeters Optimize travel moves so that no perimeters are crossed (default: no)
--thin-walls Detect single-width walls (default: yes) --thin-walls Detect single-width walls (default: yes)
--overhangs Experimental option to use bridge flow, speed and fan for overhangs --detect-bridging-perimeters Detect bridging perimeters and apply bridge flow, speed and fan
(default: yes) (default: yes)
Support material options: Support material options:

View File

@ -818,7 +818,7 @@ PrintConfigDef::PrintConfigDef()
def->label = "Detect bridging perimeters"; def->label = "Detect bridging perimeters";
def->category = "Layers and Perimeters"; def->category = "Layers and Perimeters";
def->tooltip = "Experimental option to adjust flow for overhangs (bridge flow will be used), to apply bridge speed to them and enable fan."; def->tooltip = "Experimental option to adjust flow for overhangs (bridge flow will be used), to apply bridge speed to them and enable fan.";
def->cli = "overhangs!"; def->cli = "overhangs|detect-bridging-perimeters!";
def->default_value = new ConfigOptionBool(true); def->default_value = new ConfigOptionBool(true);
def = this->add("perimeter_acceleration", coFloat); def = this->add("perimeter_acceleration", coFloat);