Remove the ?filename? from the project planner slice result.

master
daid303 2012-10-12 09:38:42 +02:00
parent 67d51bd066
commit b35766340e
1 changed files with 3 additions and 1 deletions

View File

@ -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')