Limit Shrinkage values (#10930)
Some checks are pending
Build all / Build All (push) Waiting to run
Build all / Flatpak (push) Waiting to run
Publish docs to Wiki / Publish docs to Wiki (push) Waiting to run

* 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>
This commit is contained in:
Ian Bassi 2025-10-20 00:00:20 -03:00 committed by GitHub
parent fcb640bee1
commit a6d9fa49b4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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 });