mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-18 11:02:08 +00: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:
@@ -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.");
|
"\nBe sure to allow enough space between objects, as this compensation is done after the checks.");
|
||||||
def->sidetext = "%";
|
def->sidetext = "%";
|
||||||
def->ratio_over = "";
|
def->ratio_over = "";
|
||||||
def->min = 10;
|
def->min = 50;
|
||||||
|
def->max = 150;
|
||||||
def->mode = comAdvanced;
|
def->mode = comAdvanced;
|
||||||
def->set_default_value(new ConfigOptionPercents{ 100 });
|
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.");
|
" The part will be scaled in Z to compensate.");
|
||||||
def->sidetext = "%";
|
def->sidetext = "%";
|
||||||
def->ratio_over = "";
|
def->ratio_over = "";
|
||||||
def->min = 10;
|
def->min = 50;
|
||||||
|
def->max = 150;
|
||||||
def->mode = comAdvanced;
|
def->mode = comAdvanced;
|
||||||
def->set_default_value(new ConfigOptionPercents{ 100 });
|
def->set_default_value(new ConfigOptionPercents{ 100 });
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user