1. Move ZAA options to comExpert
2. Expose zaa_dont_alternate_fill_direction to the UI
3. Remove ironing_expansion from UI as it's not implemented
This commit is contained in:
SoftFever
2026-05-01 21:25:58 +08:00
parent 20c3c833df
commit 3d0b24f94d
3 changed files with 12 additions and 6 deletions

View File

@@ -4118,14 +4118,14 @@ void PrintConfigDef::init_fff_params()
def->sidetext = L("mm");
def->min = -100;
def->max = 100;
def->mode = comAdvanced;
def->mode = comExpert;
def->set_default_value(new ConfigOptionFloat(0));
def = this->add("zaa_enabled", coBool);
def->label = L("Z contouring enabled");
def->category = L("Quality");
def->tooltip = L("Enable Z-layer contouring (aka Z-layer anti-aliasing)");
def->mode = comAdvanced;
def->mode = comExpert;
def->set_default_value(new ConfigOptionBool(false));
def = this->add("zaa_minimize_perimeter_height", coFloat);
@@ -4136,14 +4136,14 @@ void PrintConfigDef::init_fff_params()
def->sidetext = L("°");
def->min = 0;
def->max = 90;
def->mode = comAdvanced;
def->mode = comExpert;
def->set_default_value(new ConfigOptionFloat(0));
def = this->add("zaa_dont_alternate_fill_direction", coBool);
def->label = L("Don't alternate fill direction");
def->category = L("Quality");
def->tooltip = L("Disable alternating fill direction when using Z contouring");
def->mode = comAdvanced;
def->mode = comExpert;
def->set_default_value(new ConfigOptionBool(false));
def = this->add("zaa_min_z", coFloat);
@@ -4153,7 +4153,7 @@ void PrintConfigDef::init_fff_params()
def->sidetext = L("mm");
def->min = 0;
def->max = 100;
def->mode = comAdvanced;
def->mode = comExpert;
def->set_default_value(new ConfigOptionFloat(0.05));
def = this->add("layer_change_gcode", coString);