mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2026-01-06 14:57:50 -07:00
FIX: wrong value in param
jira:NONE Signed-off-by: xun.zhang <xun.zhang@bambulab.com> Change-Id: I3521005617f414f57247599f3211e87f576a28e5 (cherry picked from commit b2f32e501021beb5119543524aa9d6487123d758)
This commit is contained in:
parent
1b84f2da1c
commit
b6d33931a3
1 changed files with 5 additions and 5 deletions
|
|
@ -2226,13 +2226,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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue