Added 'travel_acceleration' configuration option (not used so far)

This commit is contained in:
Lukas Matena 2023-03-08 19:34:41 +01:00
parent 5d89e742b4
commit cf226f8eab
6 changed files with 14 additions and 3 deletions
src/libslic3r

View file

@ -1463,7 +1463,15 @@ void PrintConfigDef::init_fff_params()
def->min = 0;
def->mode = comExpert;
def->set_default_value(new ConfigOptionFloat(0));
def = this->add("travel_acceleration", coFloat);
def->label = L("Travel");
def->tooltip = L("This is the acceleration your printer will use for travel moves. Set zero to disable "
"acceleration control for travel.");
def->sidetext = L("mm/s²");
def->min = 0;
def->mode = comExpert;
def->set_default_value(new ConfigOptionFloat(0));
def = this->add("infill_every_layers", coInt);
def->label = L("Combine infill every");