mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-21 05:37:52 -06:00
Added option to independently set z axis travel speed
This commit is contained in:
parent
e1f2336b8e
commit
bd6badf123
6 changed files with 13 additions and 2 deletions
|
@ -2738,6 +2738,14 @@ void PrintConfigDef::init_fff_params()
|
|||
def->mode = comAdvanced;
|
||||
def->set_default_value(new ConfigOptionFloat(130));
|
||||
|
||||
def = this->add("travel_speed_z", coFloat);
|
||||
def->label = L("Z travel");
|
||||
def->tooltip = L("Speed for movements along the Z axis.");
|
||||
def->sidetext = L("mm/s");
|
||||
def->min = 1;
|
||||
def->mode = comAdvanced;
|
||||
def->set_default_value(new ConfigOptionFloat(12));
|
||||
|
||||
def = this->add("use_firmware_retraction", coBool);
|
||||
def->label = L("Use firmware retraction");
|
||||
def->tooltip = L("This experimental setting uses G10 and G11 commands to have the firmware "
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue