diff --git a/Cura/gui/projectPlanner.py b/Cura/gui/projectPlanner.py index 4098b684..943eed52 100644 --- a/Cura/gui/projectPlanner.py +++ b/Cura/gui/projectPlanner.py @@ -974,7 +974,9 @@ class ProjectSliceProgressWindow(wx.Frame): resultFile.write('T%d\n' % (action.extruder)) currentExtruder = action.extruder prevTemp = action.temperature - resultFile.write(profile.getAlterationFileContents('start.gcode')) + startGCode = profile.getAlterationFileContents('start.gcode') + startGCode = startGCode.replace('?filename?', 'Multiple files') + resultFile.write(startGCode) else: #reset the extrusion length, and move to the next object center. resultFile.write(';TYPE:CUSTOM\n')