Skip to content

Commit

Permalink
Fix missing function call
Browse files Browse the repository at this point in the history
  • Loading branch information
wawanbreton committed Jun 12, 2024
1 parent a4b6c5a commit ac2408a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/FffGcodeWriter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1100,7 +1100,7 @@ void FffGcodeWriter::endRaftLayer(const SliceDataStorage& storage, LayerPlan& gc
setExtruder_addPrime(storage, gcode_layer, current_extruder, append_to_prime_tower);

// If required, fill prime tower for other extruders
for (const ExtruderUse& extruder_use : getExtruderUse(layer_nr))
for (const ExtruderUse& extruder_use : extruder_order_per_layer.get(layer_nr))
{
if (! append_to_prime_tower || (! gcode_layer.getPrimeTowerIsPlanned(extruder_use.extruder_nr) && extruder_use.prime != ExtruderPrime::None))
{
Expand Down

0 comments on commit ac2408a

Please sign in to comment.