From 260da3215cac47a9a542e8e9358fc397595061db Mon Sep 17 00:00:00 2001 From: remi durand Date: Wed, 17 Mar 2021 14:57:30 +0100 Subject: [PATCH] =?UTF-8?q?#1016=20Multimaterial=20Toolchange=20Temperatur?= =?UTF-8?q?e=20cannot=20be=20set=20to=20a=20value=20below=20175=C2=B0C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/libslic3r/PrintConfig.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index 9aecbe507..b0036559e 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -1300,8 +1300,7 @@ void PrintConfigDef::init_fff_params() def->label = L("Toolchange temperature"); def->tooltip = L("To further reduce stringing, it can be helpful to set a lower temperature just prior to extracting filament from the hotend."); def->sidetext = L("°C"); - def->min = 175; - def->max = 285; + def->min = 0; def->mode = comAdvanced; def->set_default_value(new ConfigOptionInts { 200 });