Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/CuraEngine.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorj.delarago <joeydelarago@gmail.com>2022-05-05 17:56:53 +0300
committerj.delarago <joeydelarago@gmail.com>2022-05-05 17:57:31 +0300
commitf0ba3432e0b8732fb3ab2bfc638061d9215cd099 (patch)
tree606e28617e260bd4242769180b604749846534d1
parentbd0b4a37129b494de9a42e1f5f0858942b3cd8cc (diff)
Change line_spacing back to line_width, line_spacing has been changed to match line_width in ironing_config instead of here.CURA-9158
CURA-9158
-rw-r--r--src/TopSurface.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/TopSurface.cpp b/src/TopSurface.cpp
index 3dee48fa1..18b691866 100644
--- a/src/TopSurface.cpp
+++ b/src/TopSurface.cpp
@@ -85,7 +85,7 @@ bool TopSurface::ironing(const SliceDataStorage& storage, const SliceMeshStorage
}
Polygons ironed_areas = areas.offset(ironing_inset);
- Infill infill_generator(pattern, zig_zaggify_infill, connect_polygons, ironed_areas, line_spacing, line_spacing, infill_overlap, infill_multiplier, direction, layer.z - 10, shift, max_resolution, max_deviation, wall_line_count, infill_origin, skip_line_stitching);
+ Infill infill_generator(pattern, zig_zaggify_infill, connect_polygons, ironed_areas, line_width, line_spacing, infill_overlap, infill_multiplier, direction, layer.z - 10, shift, max_resolution, max_deviation, wall_line_count, infill_origin, skip_line_stitching);
std::vector<VariableWidthLines> ironing_paths;
Polygons ironing_polygons;
Polygons ironing_lines;