mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-16 11:17:51 -06:00
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:
parent
625978355a
commit
3d378563b5
15 changed files with 18 additions and 18 deletions
|
@ -12,7 +12,7 @@
|
||||||
"25.4"
|
"25.4"
|
||||||
],
|
],
|
||||||
"filament_density": [
|
"filament_density": [
|
||||||
"1.24"
|
"1.31"
|
||||||
],
|
],
|
||||||
"filament_flow_ratio": [
|
"filament_flow_ratio": [
|
||||||
"0.98"
|
"0.98"
|
||||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -151,6 +151,7 @@
|
||||||
"deretraction_speed": [
|
"deretraction_speed": [
|
||||||
"30"
|
"30"
|
||||||
],
|
],
|
||||||
|
"z_hop_type": "Auto Lift",
|
||||||
"nozzle_type": "hardened_steel",
|
"nozzle_type": "hardened_steel",
|
||||||
"silent_mode": "0",
|
"silent_mode": "0",
|
||||||
"single_extruder_multi_material": "1",
|
"single_extruder_multi_material": "1",
|
||||||
|
|
|
@ -2151,10 +2151,10 @@ void PrintConfigDef::init_fff_params()
|
||||||
def->label = L("Z Hop Type");
|
def->label = L("Z Hop Type");
|
||||||
def->tooltip = L("");
|
def->tooltip = L("");
|
||||||
def->enum_keys_map = &ConfigOptionEnum<ZHopType>::get_enum_values();
|
def->enum_keys_map = &ConfigOptionEnum<ZHopType>::get_enum_values();
|
||||||
def->enum_values.push_back("auto");
|
def->enum_values.push_back("Auto Lift");
|
||||||
def->enum_values.push_back("normal");
|
def->enum_values.push_back("Normal Lift");
|
||||||
def->enum_values.push_back("slope");
|
def->enum_values.push_back("Slope Lift");
|
||||||
def->enum_values.push_back("spiral");
|
def->enum_values.push_back("Spiral Lift");
|
||||||
def->enum_labels.push_back(L("Auto"));
|
def->enum_labels.push_back(L("Auto"));
|
||||||
def->enum_labels.push_back(L("Normal"));
|
def->enum_labels.push_back(L("Normal"));
|
||||||
def->enum_labels.push_back(L("Slope"));
|
def->enum_labels.push_back(L("Slope"));
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue