ENH: modify start gcode

fix the text errot of density of PolyTerra
z_hop_type change to auto

Signed-off-by: qing.zhang <qing.zhang@bambulab.com>
Change-Id: I7f59d2620b42d2f2092ebb4c01ac3a5455c40a4f
This commit is contained in:
qing.zhang 2023-01-29 15:34:14 +08:00 committed by Lane.Wei
parent 625978355a
commit 3d378563b5
15 changed files with 18 additions and 18 deletions

View file

@ -2151,10 +2151,10 @@ void PrintConfigDef::init_fff_params()
def->label = L("Z Hop Type");
def->tooltip = L("");
def->enum_keys_map = &ConfigOptionEnum<ZHopType>::get_enum_values();
def->enum_values.push_back("auto");
def->enum_values.push_back("normal");
def->enum_values.push_back("slope");
def->enum_values.push_back("spiral");
def->enum_values.push_back("Auto Lift");
def->enum_values.push_back("Normal Lift");
def->enum_values.push_back("Slope Lift");
def->enum_values.push_back("Spiral Lift");
def->enum_labels.push_back(L("Auto"));
def->enum_labels.push_back(L("Normal"));
def->enum_labels.push_back(L("Slope"));