ENH:modify interface of wipe tower brim_width

jira: none
Change-Id: I22e3c30aa6320e7e66316fa15b6c06e26e458a94
This commit is contained in:
jiangkai.zhao 2025-01-24 16:41:20 +08:00 committed by lane.wei
parent 6350ebf9b6
commit 74a4b1bd49
1 changed files with 4 additions and 1 deletions

View File

@ -4341,11 +4341,14 @@ void PrintConfigDef::init_fff_params()
def->set_default_value(new ConfigOptionFloat(0.));
def = this->add("prime_tower_brim_width", coFloat);
def->gui_type = ConfigOptionDef::GUIType::f_enum_open;
def->label = L("Brim width");
def->tooltip = L("Brim width of wipe tower, -1 means auto calculated width based on the height of wipe tower.");
def->tooltip = L("Brim width of wipe tower, negative number means auto calculated width based on the height of wipe tower.");
def->sidetext = L("mm");
def->mode = comAdvanced;
def->min = -1;
def->enum_values.push_back("-1");
def->enum_labels.push_back(L("Auto"));
def->set_default_value(new ConfigOptionFloat(3.));
def = this->add("prime_tower_extra_rib_length", coFloat);