From: daid303 Date: Fri, 12 Oct 2012 07:38:42 +0000 (+0200) Subject: Remove the ?filename? from the project planner slice result. X-Git-Tag: 13.03~252^2~2 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=b35766340ec5cfa248e8e0f49591356222f7a6f9;p=cura.git Remove the ?filename? from the project planner slice result. --- 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')