lightning infill angles Wiki (#13984)

This commit is contained in:
Ian Bassi
2026-06-01 09:24:00 -03:00
committed by GitHub
parent 7d5d3be99b
commit 1bfdeba3db
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;

View File

@@ -2482,9 +2482,9 @@ void TabPrint::build()
optgroup->append_single_option_line("lateral_lattice_angle_1", "strength_settings_patterns#lateral-lattice");
optgroup->append_single_option_line("lateral_lattice_angle_2", "strength_settings_patterns#lateral-lattice");
optgroup->append_single_option_line("infill_overhang_angle", "strength_settings_patterns#lateral-honeycomb");
optgroup->append_single_option_line("lightning_overhang_angle", "strength_settings_patterns#lightning-infill");
optgroup->append_single_option_line("lightning_prune_angle", "strength_settings_patterns#lightning-infill");
optgroup->append_single_option_line("lightning_straightening_angle", "strength_settings_patterns#lightning-infill");
optgroup->append_single_option_line("lightning_overhang_angle", "strength_settings_patterns#lightning");
optgroup->append_single_option_line("lightning_prune_angle", "strength_settings_patterns#lightning");
optgroup->append_single_option_line("lightning_straightening_angle", "strength_settings_patterns#lightning");
optgroup->append_single_option_line("infill_anchor_max", "strength_settings_infill#anchor");
optgroup->append_single_option_line("infill_anchor", "strength_settings_infill#anchor");
optgroup->append_single_option_line("internal_solid_infill_pattern", "strength_settings_infill#internal-solid-infill");