mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-08-14 07:05:57 +08:00
Fix of a regression from e0811e4aa580983cc5316427414c46b9af7867d6
Due to refactoring of G-code export some "don't care" extrusions were not extruded at all.
This commit is contained in:
parent
d1e35ff60e
commit
29086aa00b
@ -3407,7 +3407,7 @@ const std::vector<GCode::ObjectByExtruder::Island::Region>& GCode::ObjectByExtru
|
|||||||
if (this_override == nullptr || (*this_override)[copy] == -int(extruder)-1)
|
if (this_override == nullptr || (*this_override)[copy] == -int(extruder)-1)
|
||||||
target_eec.emplace_back(entities[i]);
|
target_eec.emplace_back(entities[i]);
|
||||||
}
|
}
|
||||||
for (; i < overrides.size(); ++ i)
|
for (; i < entities.size(); ++ i)
|
||||||
target_eec.emplace_back(entities[i]);
|
target_eec.emplace_back(entities[i]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user