From 120c7cd48cfef9a1c67f177a247e688b6ed13568 Mon Sep 17 00:00:00 2001 From: "xun.zhang" Date: Wed, 4 Dec 2024 14:24:56 +0800 Subject: [PATCH] ENH: modify max chamber temperature Set max chamber temperature to 80 jira: NONE Signed-off-by: xun.zhang Change-Id: Iedf91d68759056be1ff5743dc272d933ff55aedc --- 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 b76873bff..7e37e4ea0 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -3984,7 +3984,7 @@ void PrintConfigDef::init_fff_params() def->sidetext = "°C"; def->full_label = L("Chamber temperature"); def->min = 0; - def->max = 60; + def->max = 80; def->set_default_value(new ConfigOptionInts{0}); def = this->add("nozzle_temperature", coInts);