From: daid303 Date: Tue, 9 Oct 2012 07:00:19 +0000 (+0200) Subject: Remove some more references to GCode and Slice. X-Git-Tag: 13.03~259 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=40c94ed498aea24edb3abf4e9ae73a85075db22c;p=cura.git Remove some more references to GCode and Slice. --- diff --git a/Cura/gui/printWindow.py b/Cura/gui/printWindow.py index 1eed725f..3ddc820c 100644 --- a/Cura/gui/printWindow.py +++ b/Cura/gui/printWindow.py @@ -114,8 +114,8 @@ class printWindow(wx.Frame): self.sizer.Add(boxsizer, pos=(0,0), span=(6,1), flag=wx.EXPAND) self.connectButton = wx.Button(self.panel, -1, 'Connect') - #self.loadButton = wx.Button(self.panel, -1, 'Load GCode') - self.printButton = wx.Button(self.panel, -1, 'Print GCode') + #self.loadButton = wx.Button(self.panel, -1, 'Load') + self.printButton = wx.Button(self.panel, -1, 'Print') self.pauseButton = wx.Button(self.panel, -1, 'Pause') self.cancelButton = wx.Button(self.panel, -1, 'Cancel print') self.machineLogButton = wx.Button(self.panel, -1, 'Error log') diff --git a/Cura/gui/projectPlanner.py b/Cura/gui/projectPlanner.py index 3e414e3f..5d8731f3 100644 --- a/Cura/gui/projectPlanner.py +++ b/Cura/gui/projectPlanner.py @@ -193,10 +193,10 @@ class projectPlanner(wx.Frame): toolbarUtil.NormalButton(self.toolbar2, self.OnMoveUp, 'move-up.png', 'Move model up in print list') toolbarUtil.NormalButton(self.toolbar2, self.OnMoveDown, 'move-down.png', 'Move model down in print list') toolbarUtil.NormalButton(self.toolbar2, self.OnCopy, 'copy.png', 'Make a copy of the current selected object') - toolbarUtil.NormalButton(self.toolbar2, self.OnSetCustomProfile, 'set-profile.png', 'Set a custom profile to be used to slice a specific object.') + toolbarUtil.NormalButton(self.toolbar2, self.OnSetCustomProfile, 'set-profile.png', 'Set a custom profile to be used to prepare a specific object.') self.toolbar2.AddSeparator() toolbarUtil.NormalButton(self.toolbar2, self.OnAutoPlace, 'autoplace.png', 'Automaticly organize the objects on the platform.') - toolbarUtil.NormalButton(self.toolbar2, self.OnSlice, 'slice.png', 'Slice to project into a gcode file.') + toolbarUtil.NormalButton(self.toolbar2, self.OnSlice, 'slice.png', 'Prepare to project into a gcode file.') self.toolbar2.Realize() self.toolbar3 = toolbarUtil.Toolbar(self.panel) @@ -216,7 +216,7 @@ class projectPlanner(wx.Frame): self.listbox = wx.ListBox(self.panel, -1, choices=[]) self.addButton = wx.Button(self.panel, -1, "Add") self.remButton = wx.Button(self.panel, -1, "Remove") - self.sliceButton = wx.Button(self.panel, -1, "Slice") + self.sliceButton = wx.Button(self.panel, -1, "Prepare") self.autoPlaceButton = wx.Button(self.panel, -1, "Auto Place") sizer.Add(self.toolbar, (0,0), span=(1,1), flag=wx.EXPAND|wx.LEFT|wx.RIGHT) @@ -639,7 +639,7 @@ class projectPlanner(wx.Frame): action.usePreviousSlice = False actionList.append(action) - + #Restore the old profile. profile.resetTempOverride()