Pad "tilt" changed to "slope"

This commit is contained in:
tamasmeszaros 2019-02-25 16:04:46 +01:00
parent f23919985f
commit 2b03c25bc6
7 changed files with 16 additions and 16 deletions
src/libslic3r

View file

@ -2731,14 +2731,14 @@ void PrintConfigDef::init_sla_params()
def->min = 0;
def->default_value = new ConfigOptionFloat(1.0);
def = this->add("pad_wall_tilt", coFloat);
def->label = L("Pad wall tilt");
def = this->add("pad_wall_slope", coFloat);
def->label = L("Pad wall slope");
def->category = L("Pad");
def->tooltip = L("The tilt of the pad wall relative to the bed plane. "
def->tooltip = L("The slope of the pad wall relative to the bed plane. "
"90 degrees means straight walls.");
def->sidetext = L("degrees");
def->cli = "";
def->min = 0.1; // What should be the minimum?
def->min = 45;
def->max = 90;
def->default_value = new ConfigOptionFloat(45.0);
}