Adjustable infill wall overlap for top and bottom surfaces (#4832)

* Adjustable infill wall overlap for top and bottom surfaces

* Compile error and tool tip updates
This commit is contained in:
Ioannis Giannakas 2024-05-09 16:36:30 +01:00 committed by GitHub
parent 4c1b66c0b7
commit 46b7a2953d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 35 additions and 9 deletions

View file

@ -2680,11 +2680,20 @@ def = this->add("filament_loading_speed", coFloats);
def = this->add("infill_wall_overlap", coPercent);
def->label = L("Infill/Wall overlap");
def->category = L("Strength");
def->tooltip = L("Infill area is enlarged slightly to overlap with wall for better bonding. The percentage value is relative to line width of sparse infill");
def->tooltip = L("Infill area is enlarged slightly to overlap with wall for better bonding. The percentage value is relative to line width of sparse infill. Set this value to ~10-15% to minimize potential over extrusion and accumulation of material resulting in rough top surfaces.");
def->sidetext = L("%");
def->ratio_over = "inner_wall_line_width";
def->mode = comAdvanced;
def->set_default_value(new ConfigOptionPercent(15));
def = this->add("top_bottom_infill_wall_overlap", coPercent);
def->label = L("Top/Bottom solid infill/wall overlap");
def->category = L("Strength");
def->tooltip = L("Top solid infill area is enlarged slightly to overlap with wall for better bonding and to minimize the appearance of pinholes where the top infill meets the walls. A value of 25-30% is a good starting point, minimising the appearance of pinholes. The percentage value is relative to line width of sparse infill");
def->sidetext = L("%");
def->ratio_over = "inner_wall_line_width";
def->mode = comAdvanced;
def->set_default_value(new ConfigOptionPercent(25));
def = this->add("sparse_infill_speed", coFloat);
def->label = L("Sparse infill");