mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-12-26 17:48:35 -07:00
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>
This commit is contained in:
parent
fcb640bee1
commit
a6d9fa49b4
1 changed files with 4 additions and 2 deletions
|
|
@ -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 });
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue