Add upper limit on 1.0 to sla display gamma parameter.

This commit is contained in:
tamasmeszaros 2019-10-01 14:44:07 +02:00
parent 45b81f1805
commit b6f447980a

View file

@ -2392,6 +2392,7 @@ void PrintConfigDef::init_sla_params()
"the threshold in the middle. This behaviour eliminates "
"antialiasing without losing holes in polygons.");
def->min = 0;
def->max = 1;
def->mode = comExpert;
def->set_default_value(new ConfigOptionFloat(1.0));