From b35766340ec5cfa248e8e0f49591356222f7a6f9 Mon Sep 17 00:00:00 2001 From: daid303 Date: Fri, 12 Oct 2012 09:38:42 +0200 Subject: [PATCH] Remove the ?filename? from the project planner slice result. --- Cura/gui/projectPlanner.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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') -- 2.30.2