From 6574a0fec4ef79c0eddf34fe180bbac4f3d5974c Mon Sep 17 00:00:00 2001 From: "xun.zhang" Date: Tue, 5 Sep 2023 09:59:36 +0800 Subject: [PATCH] ENH: fix full_label problem in chamber temp STUIDO:3518 Signed-off-by: xun.zhang Change-Id: Id714e518fdc8fb15dfd64046afb4806ea95a31ba --- src/libslic3r/PrintConfig.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index 0147be2be5..fb69018760 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -3179,7 +3179,7 @@ void PrintConfigDef::init_fff_params() "While for PLA, PETG, TPU, PVA and other low temperature materials, the actual chamber temperature should not be high to avoid cloggings," "so extra chamber temperature compensation is not needed, and 0 is highly recommended"); def->sidetext = L("°C"); - def->full_label = L("Chamber temperature during print.0 means do not open compensation.Don't open it for low-temperature filaments like PLA, PETG, TPU"); + def->full_label = L("Chamber temperature"); def->min = 0; def->max = 60; def->set_default_value(new ConfigOptionInts{0});