FIX: wrong value in param

jira:NONE

Signed-off-by: xun.zhang <xun.zhang@bambulab.com>
Change-Id: I3521005617f414f57247599f3211e87f576a28e5
This commit is contained in:
xun.zhang 2025-02-26 21:26:46 +08:00 committed by lane.wei
parent 26932cf1bd
commit b2f32e5010
1 changed files with 5 additions and 5 deletions

View File

@ -1765,13 +1765,13 @@ void PrintConfigDef::init_fff_params()
def = this->add("bed_temperature_formula", coEnum);
def->label = L("Bed temperature type");
def->tooltip = L("With this option enabled, you can print filaments with significant bed temperature differentials.");
def->tooltip = L("This option determines how the bed temperature is set during slicing: based on the temperature of the first filament or the highest temperature of the printed filaments.");
def->mode = comDevelop;
def->enum_keys_map = &ConfigOptionEnum<BedTempFormula>::get_enum_values();
def->enum_values.push_back("first_filament");
def->enum_values.push_back("highest_filament");
def->enum_labels.push_back("First filament");
def->enum_labels.push_back("Highest temp filament");
def->enum_values.push_back("by_first_filament");
def->enum_values.push_back("by_highest_temp");
def->enum_labels.push_back(L("By First filament"));
def->enum_labels.push_back(L("By Highest Temp"));
def->set_default_value(new ConfigOptionEnum<BedTempFormula>(BedTempFormula::btfFirstFilament));
def = this->add("filament_diameter", coFloats);