mirror of
https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git
synced 2026-05-15 07:32:39 -07: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:
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user