Set min SLA display resolution to 1x1 (see SPE-1000)

This commit is contained in:
tamasmeszaros 2019-08-19 10:58:44 +02:00
parent 9bd65360ce
commit eddf932161

View file

@ -2306,13 +2306,13 @@ void PrintConfigDef::init_sla_params()
def->full_label = L("Number of pixels in");
def->label = ("X");
def->tooltip = L("Number of pixels in X");
def->min = 100;
def->min = 1;
def->set_default_value(new ConfigOptionInt(2560));
def = this->add("display_pixels_y", coInt);
def->label = ("Y");
def->tooltip = L("Number of pixels in Y");
def->min = 100;
def->min = 1;
def->set_default_value(new ConfigOptionInt(1440));
def = this->add("display_mirror_x", coBool);