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

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Matena <lukasmatena@seznam.cz>2018-06-29 13:26:22 +0300
committerLukas Matena <lukasmatena@seznam.cz>2018-06-29 13:26:22 +0300
commit5bf795ec6f2b746f1934f99eaa522a05c98a4fa9 (patch)
tree4dc7159c4309c60f4551f7486f94817b0b2dd2bd /xs/src/libslic3r/GCode.cpp
parentbb288f2a1b99a18d8776809a0154cf9e1026cc3a (diff)
Overriddable infills that were not overridden are now printed according to infill_first
Diffstat (limited to 'xs/src/libslic3r/GCode.cpp')
-rw-r--r--xs/src/libslic3r/GCode.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/xs/src/libslic3r/GCode.cpp b/xs/src/libslic3r/GCode.cpp
index 1271ee9ee..188993aeb 100644
--- a/xs/src/libslic3r/GCode.cpp
+++ b/xs/src/libslic3r/GCode.cpp
@@ -1334,7 +1334,7 @@ void GCode::process_layer(
if (objects_by_extruder_it == by_extruder.end())
continue;
- // We are almost ready to print. However, we must go through all the object twice and only print the overridden extrusions first (infill/primeter wiping feature):
+ // We are almost ready to print. However, we must go through all the object twice and only print the overridden extrusions first (infill/perimeter wiping feature):
for (int print_wipe_extrusions=layer_tools.wiping_extrusions.is_anything_overridden(); print_wipe_extrusions>=0; --print_wipe_extrusions) {
for (ObjectByExtruder &object_by_extruder : objects_by_extruder_it->second) {
const size_t layer_id = &object_by_extruder - objects_by_extruder_it->second.data();