From: daid Date: Tue, 24 Apr 2012 10:03:03 +0000 (+0200) Subject: Add the ability to edit the nextobject.gcode X-Git-Tag: RC3~20 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=b6492df81eda6e3df6fd6b0ab17ea3122659f102;p=cura.git Add the ability to edit the nextobject.gcode --- diff --git a/Cura/gui/alterationPanel.py b/Cura/gui/alterationPanel.py index 43408f04..c102f19b 100644 --- a/Cura/gui/alterationPanel.py +++ b/Cura/gui/alterationPanel.py @@ -7,7 +7,7 @@ class alterationPanel(wx.Panel): def __init__(self, parent): wx.Panel.__init__(self, parent,-1) - self.alterationFileList = ['start.gcode', 'end.gcode', 'support_start.gcode', 'support_end.gcode', 'replace.csv'] + self.alterationFileList = ['start.gcode', 'end.gcode', 'support_start.gcode', 'support_end.gcode', 'nextobject.gcode', 'replace.csv'] self.currentFile = None self.textArea = wx.TextCtrl(self, style=wx.TE_MULTILINE|wx.TE_DONTWRAP|wx.TE_PROCESS_TAB)