From e2e90aec344f45529c338b2345fed386d250647e Mon Sep 17 00:00:00 2001 From: supermerill Date: Sat, 19 Sep 2020 16:19:39 +0200 Subject: [PATCH] #287 filament_shrink min set to 10% --- 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 d71e41eb4..056999508 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -1269,7 +1269,7 @@ void PrintConfigDef::init_fff_params() " Only the filament used for the perimeter is taken into account." "\nBe sure to let enough space between objects, as this compensation is done after the checks."); def->sidetext = L("%"); - def->min = 0; + def->min = 10; def->mode = comExpert; def->set_default_value(new ConfigOptionPercents{ 100 });