Adding checkbox for disabling support generation (still having pad generation)

This commit is contained in:
tamasmeszaros 2018-11-22 18:02:05 +01:00
parent 7efadfae1c
commit d28b61f8a3
8 changed files with 72 additions and 24 deletions
src/libslic3r

View file

@ -2445,6 +2445,14 @@ void PrintConfigDef::init_sla_params()
def = this->add("sla_print_settings_id", coString);
def->default_value = new ConfigOptionString("");
def = this->add("supports_enable", coBool);
def->label = L("Generate supports");
def->category = L("Supports");
def->tooltip = L("Generate supports for the models");
def->sidetext = L("");
def->cli = "";
def->default_value = new ConfigOptionBool(true);
def = this->add("support_head_front_radius", coFloat);
def->label = L("Support head front radius");
def->category = L("Supports");