diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index e9f2422274..688444d013 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -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::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"));