WIP: Allows regions of MMU segmentation to be trimmed by chosen width.

This commit is contained in:
Lukáš Hejl 2021-04-19 07:12:42 +02:00
parent f49ceb1e0f
commit 368b48b0a0
6 changed files with 32 additions and 1 deletions

View file

@ -1288,6 +1288,14 @@ void PrintConfigDef::init_fff_params()
def->mode = comExpert;
def->set_default_value(new ConfigOptionBool(false));
def = this->add("mmu_segmented_region_max_width", coFloat);
def->label = L("Maximum width of a segmented region");
def->tooltip = L("Maximum width of a segmented region. Zero disables this feature.");
def->sidetext = L("mm (zero to disable)");
def->min = 0;
def->mode = comExpert;
def->set_default_value(new ConfigOptionFloat(0.f));
def = this->add("ironing", coBool);
def->label = L("Enable ironing");
def->tooltip = L("Enable ironing of the top layers with the hot print head for smooth surface");