From a6d9fa49b4d7c6a4fb63a6749e137ae6175cfb0a Mon Sep 17 00:00:00 2001 From: Ian Bassi Date: Mon, 20 Oct 2025 00:00:20 -0300 Subject: [PATCH] Limit Shrinkage values (#10930) * Limit Shrinkage values Co-Authored-By: Rodrigo <162915171+RF47@users.noreply.github.com> * Min 50 Max 150 --------- Co-authored-by: Rodrigo <162915171+RF47@users.noreply.github.com> --- src/libslic3r/PrintConfig.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index c80c2e7cc7..7b9422c909 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -2111,7 +2111,8 @@ void PrintConfigDef::init_fff_params() "\nBe sure to allow enough space between objects, as this compensation is done after the checks."); def->sidetext = "%"; def->ratio_over = ""; - def->min = 10; + def->min = 50; + def->max = 150; def->mode = comAdvanced; def->set_default_value(new ConfigOptionPercents{ 100 }); @@ -2122,7 +2123,8 @@ void PrintConfigDef::init_fff_params() " The part will be scaled in Z to compensate."); def->sidetext = "%"; def->ratio_over = ""; - def->min = 10; + def->min = 50; + def->max = 150; def->mode = comAdvanced; def->set_default_value(new ConfigOptionPercents{ 100 });