From b2f32e501021beb5119543524aa9d6487123d758 Mon Sep 17 00:00:00 2001 From: "xun.zhang" Date: Wed, 26 Feb 2025 21:26:46 +0800 Subject: [PATCH] FIX: wrong value in param jira:NONE Signed-off-by: xun.zhang Change-Id: I3521005617f414f57247599f3211e87f576a28e5 --- src/libslic3r/PrintConfig.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index 5aeba95bd..62013be38 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -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::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::btfFirstFilament)); def = this->add("filament_diameter", coFloats);