Fixed compilation on OSX
Fixed incorrect clear of LayerIslands.
This commit is contained in:
Vojtech Bubnik 2022-11-07 17:26:48 +01:00
parent f24b4e86a9
commit 28f8997dd3
3 changed files with 9 additions and 7 deletions
src/libslic3r

View file

@ -2399,7 +2399,8 @@ void GCode::process_layer_single_object(
for (uint32_t perimeter_id : island.perimeters)
if (const auto *eec = static_cast<const ExtrusionEntityCollection*>(layerm.perimeters().entities[perimeter_id]);
shall_print_this_extrusion_collection(eec, region)) {
assert(! eec->can_reverse());
// This may not apply to Arachne, but maybe the Arachne gap fill should disable reverse as well?
// assert(! eec->can_reverse());
if (first) {
first = false;
init_layer_delayed();