mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-21 05:37:52 -06:00
Improvement related to 'separate z travel speed':
default to zero = use good old travel speed. This is to ensure backwards compatibility with existing profiles
This commit is contained in:
parent
bd6badf123
commit
4657e0d670
2 changed files with 14 additions and 4 deletions
|
@ -2740,11 +2740,12 @@ void PrintConfigDef::init_fff_params()
|
|||
|
||||
def = this->add("travel_speed_z", coFloat);
|
||||
def->label = L("Z travel");
|
||||
def->tooltip = L("Speed for movements along the Z axis.");
|
||||
def->tooltip = L("Speed for movements along the Z axis.\nWhen set to zero, the value "
|
||||
"is ignored and regular travel speed is used instead.");
|
||||
def->sidetext = L("mm/s");
|
||||
def->min = 1;
|
||||
def->min = 0;
|
||||
def->mode = comAdvanced;
|
||||
def->set_default_value(new ConfigOptionFloat(12));
|
||||
def->set_default_value(new ConfigOptionFloat(0.));
|
||||
|
||||
def = this->add("use_firmware_retraction", coBool);
|
||||
def->label = L("Use firmware retraction");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue