Enhancement: Enabling base patterns (infill) for Organic supports (#12141)

Enhancement: Enabling base patterns for Organic supports
This commit is contained in:
Valerii Bokhan
2026-02-28 11:25:21 +01:00
committed by GitHub
parent 5c07cb5c39
commit 5e30783dcf
4 changed files with 46 additions and 16 deletions

View File

@@ -5775,7 +5775,12 @@ void PrintConfigDef::init_fff_params()
def = this->add("support_base_pattern", coEnum);
def->label = L("Base pattern");
def->category = L("Support");
def->tooltip = L("Line pattern of support.");
def->tooltip = L("Line pattern of support.\n\n"
"The Default option for Tree supports is Hollow, which means no base pattern. "
"For other support types, the Default option is the Rectilinear pattern.\n\n"
"NOTE: For Organic supports, the two walls are supported only with the Hollow/Default base pattern. "
"The Lightning base pattern is supported only by Tree Slim/Strong/Hybrid supports. "
"For the other support types, the Rectilinear will be used instead of Lightning.");
def->enum_keys_map = &ConfigOptionEnum<SupportMaterialPattern>::get_enum_values();
def->enum_values.push_back("default");
def->enum_values.push_back("rectilinear");