From: daid303 Date: Tue, 9 Oct 2012 07:03:41 +0000 (+0200) Subject: Rename slice to prepare in the batch runner. X-Git-Tag: 13.03~258 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=d5924d4d300c7fc09380961714e7b9b020fad68a;p=cura.git Rename slice to prepare in the batch runner. --- diff --git a/Cura/gui/batchRun.py b/Cura/gui/batchRun.py index ee3917e2..df6ac924 100644 --- a/Cura/gui/batchRun.py +++ b/Cura/gui/batchRun.py @@ -28,7 +28,7 @@ class batchRunWindow(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 all") self.addButton.Bind(wx.EVT_BUTTON, self.OnAddModel) self.remButton.Bind(wx.EVT_BUTTON, self.OnRemModel) @@ -44,7 +44,7 @@ class batchRunWindow(wx.Frame): self.sizer.AddGrowableRow(0) def OnAddModel(self, e): - dlg=wx.FileDialog(self, "Open file to batch slice", os.path.split(profile.getPreference('lastFile'))[0], style=wx.FD_OPEN|wx.FD_FILE_MUST_EXIST|wx.FD_MULTIPLE) + dlg=wx.FileDialog(self, "Open file to batch prepare", os.path.split(profile.getPreference('lastFile'))[0], style=wx.FD_OPEN|wx.FD_FILE_MUST_EXIST|wx.FD_MULTIPLE) dlg.SetWildcard("STL files (*.stl)|*.stl;*.STL") if dlg.ShowModal() == wx.ID_OK: for filename in dlg.GetPaths():