From 68c9cb0a8cd131bbdcae15d38a50b0a29aba2482 Mon Sep 17 00:00:00 2001 From: "chunmao.guo" Date: Mon, 6 Mar 2023 15:06:42 +0800 Subject: [PATCH] FIX: some config param range Change-Id: Ia19f51e121bd1966e35efef1127d685b07ca676f --- src/libslic3r/PrintConfig.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index c8dbaa0a4..d2c49a1f9 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -548,7 +548,7 @@ void PrintConfigDef::init_fff_params() def->tooltip = L("Bed temperature of the initial layer. " "Value 0 means the filament does not support to print on the Cool Plate"); def->sidetext = L("°C"); - def->max = 0; + def->min = 0; def->max = 120; def->set_default_value(new ConfigOptionInts{ 35 }); @@ -558,7 +558,7 @@ void PrintConfigDef::init_fff_params() def->tooltip = L("Bed temperature of the initial layer. " "Value 0 means the filament does not support to print on the Engineering Plate"); def->sidetext = L("°C"); - def->max = 0; + def->min = 0; def->max = 120; def->set_default_value(new ConfigOptionInts{ 45 }); @@ -568,7 +568,7 @@ void PrintConfigDef::init_fff_params() def->tooltip = L("Bed temperature of the initial layer. " "Value 0 means the filament does not support to print on the High Temp Plate"); def->sidetext = L("°C"); - def->max = 0; + def->min = 0; def->max = 120; def->set_default_value(new ConfigOptionInts{ 45 }); @@ -578,7 +578,7 @@ void PrintConfigDef::init_fff_params() def->tooltip = L("Bed temperature of the initial layer. " "Value 0 means the filament does not support to print on the Textured PEI Plate"); def->sidetext = L("°C"); - def->max = 0; + def->min = 0; def->max = 120; def->set_default_value(new ConfigOptionInts{45});