Number of slow layers #796

This commit is contained in:
SoftFever 2023-05-07 18:13:29 +08:00 committed by SoftFever
parent 117cda00bc
commit be4373583f
7 changed files with 35 additions and 3 deletions

View file

@ -1631,6 +1631,14 @@ void PrintConfigDef::init_fff_params()
def->mode = comAdvanced;
def->set_default_value(new ConfigOptionFloatOrPercent(100, true));
def = this->add("slow_down_layers", coInt);
def->label = L("Number of slow layers");
def->tooltip = L("The first few layers are printed slower than normal. "
"The speed is gradually increased in a linear fashion over the specified number of layers.");
def->category = L("Speed");
def->min = 0;
def->mode = comAdvanced;
def->set_default_value(new ConfigOptionInt(0));
def = this->add("nozzle_temperature_initial_layer", coInts);
def->label = L("Initial layer");