Skip to content

Commit

Permalink
Apply nozzle temperature when set in gcode header
Browse files Browse the repository at this point in the history
  • Loading branch information
wawanbreton committed Sep 18, 2023
1 parent aa60cdd commit 12e9152
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gcodeExport.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -763,7 +763,7 @@ void GCodeExport::processInitialLayerTemperature(const SliceDataStorage& storage

processInitialLayerBedTemperature();

if (scene.current_mesh_group->settings.get<bool>("material_print_temp_prepend"))
if (scene.current_mesh_group->settings.get<bool>("material_print_temp_prepend") || (scene.current_mesh_group != scene.mesh_groups.begin()))
{
for (unsigned extruder_nr = 0; extruder_nr < num_extruders; extruder_nr++)
{
Expand Down

0 comments on commit 12e9152

Please sign in to comment.