From 7aafa54bf02b085dabe13ced564130b9016fd4e8 Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Mon, 14 Mar 2016 00:08:08 +0100 Subject: [PATCH] =?UTF-8?q?Raise=20allowed=20temperatures=20to=20500=C2=B0?= =?UTF-8?q?C.=20#3114?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- xs/src/libslic3r/PrintConfig.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/xs/src/libslic3r/PrintConfig.cpp b/xs/src/libslic3r/PrintConfig.cpp index 4ab886f9f..6fcb0864e 100644 --- a/xs/src/libslic3r/PrintConfig.cpp +++ b/xs/src/libslic3r/PrintConfig.cpp @@ -429,7 +429,7 @@ PrintConfigDef::PrintConfigDef() def->tooltip = "Extruder temperature for first layer. If you want to control temperature manually during print, set this to zero to disable temperature control commands in the output file."; def->cli = "first-layer-temperature=i@"; def->min = 0; - def->max = 400; + def->max = 500; { ConfigOptionInts* opt = new ConfigOptionInts(); opt->values.push_back(200); @@ -1018,8 +1018,8 @@ PrintConfigDef::PrintConfigDef() def->tooltip = "Temperature difference to be applied when an extruder is not active."; def->sidetext = "∆°C"; def->cli = "standby-temperature-delta=i"; - def->min = -400; - def->max = 400; + def->min = -500; + def->max = 500; def->default_value = new ConfigOptionInt(-5); def = this->add("start_gcode", coString); @@ -1174,7 +1174,7 @@ PrintConfigDef::PrintConfigDef() def->cli = "temperature=i@"; def->full_label = "Temperature"; def->max = 0; - def->max = 400; + def->max = 500; { ConfigOptionInts* opt = new ConfigOptionInts(); opt->values.push_back(200);