ENH: enable inner brim mode

Change-Id: I22f53c75e0731cb1ad397c1233e858a5b9a8fc0f
(cherry picked from commit 66637a616498c8fc38745670a75ba119ae9b1a5f)
This commit is contained in:
wintergua 2023-04-07 14:10:39 +08:00 committed by Lane.Wei
parent 951be6e471
commit 6f5de187c6

View file

@ -766,12 +766,12 @@ void PrintConfigDef::init_fff_params()
def = this->add("brim_type", coEnum);
def->label = L("Brim type");
def->category = L("Support");
def->tooltip = L("This controls the generation of the brim at outer side of models. "
def->tooltip = L("This controls the generation of the brim at outer and/or inner side of models. "
"Auto means the brim width is analysed and calculated automatically.");
def->enum_keys_map = &ConfigOptionEnum<BrimType>::get_enum_values();
def->enum_values.emplace_back("auto_brim");
def->enum_values.emplace_back("outer_only");
#if !BBL_RELEASE_TO_PUBLIC
#if 1 //!BBL_RELEASE_TO_PUBLIC
// BBS: The following two types are disabled
def->enum_values.emplace_back("inner_only");
def->enum_values.emplace_back("outer_and_inner");
@ -780,7 +780,7 @@ void PrintConfigDef::init_fff_params()
def->enum_labels.emplace_back(L("Auto"));
def->enum_labels.emplace_back(L("Outer brim only"));
#if !BBL_RELEASE_TO_PUBLIC
#if 1 //!BBL_RELEASE_TO_PUBLIC
// BBS: The following two types are disabled
def->enum_labels.emplace_back(L("Inner brim only"));
def->enum_labels.emplace_back(L("Outer and inner brim"));