lightning infill angles Wiki (#13984)

This commit is contained in:
Ian Bassi
2026-06-01 09:24:00 -03:00
committed by GitHub
parent 737c684a93
commit 7a0c149701
2 changed files with 8 additions and 7 deletions

View File

@@ -3051,7 +3051,7 @@ void PrintConfigDef::init_fff_params()
def->label = L("Lightning overhang angle");
def->category = L("Strength");
def->tooltip = L("Maximum overhang angle for Lightning infill support propagation.");
def->sidetext = u8"°";
def->sidetext = u8"°"; // degrees, don't need translation
def->min = 5;
def->max = 85;
def->mode = comExpert;
@@ -3060,8 +3060,9 @@ void PrintConfigDef::init_fff_params()
def = this->add("lightning_prune_angle", coFloat);
def->label = L("Prune angle");
def->category = L("Strength");
def->tooltip = L("Controls how aggressively short or unsupported Lightning branches are pruned. This angle is converted internally to a per-layer distance.");
def->sidetext = u8"°";
def->tooltip = L("Controls how aggressively short or unsupported Lightning branches are pruned.\n"
"This angle is converted internally to a per-layer distance.");
def->sidetext = u8"°"; // degrees, don't need translation
def->min = 5;
def->max = 85;
def->mode = comExpert;
@@ -3071,7 +3072,7 @@ void PrintConfigDef::init_fff_params()
def->label = L("Straightening angle");
def->category = L("Strength");
def->tooltip = L("Maximum straightening angle used to simplify Lightning branches.");
def->sidetext = u8"°";
def->sidetext = u8"°"; // degrees, don't need translation
def->min = 5;
def->max = 85;
def->mode = comExpert;