From 6f5de187c696449b341280adc6f863b66e4edbce Mon Sep 17 00:00:00 2001 From: wintergua Date: Fri, 7 Apr 2023 14:10:39 +0800 Subject: [PATCH] ENH: enable inner brim mode Change-Id: I22f53c75e0731cb1ad397c1233e858a5b9a8fc0f (cherry picked from commit 66637a616498c8fc38745670a75ba119ae9b1a5f) --- src/libslic3r/PrintConfig.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index e9f242227..688444d01 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"));