From: Daid Date: Tue, 28 Aug 2012 08:19:55 +0000 (+0200) Subject: Fixed #202 X-Git-Tag: 13.03~365 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=cb9b85c8d364a3ac245a29c773a6ac428f42b7f7;p=cura.git Fixed #202 --- diff --git a/Cura/gui/configWizard.py b/Cura/gui/configWizard.py index 8524f7e4..37b707b2 100644 --- a/Cura/gui/configWizard.py +++ b/Cura/gui/configWizard.py @@ -85,6 +85,7 @@ class InfoPage(wx.wizard.WizardPageSimple): button = wx.Button(self, -1, buttonText) self.GetSizer().Add(text, pos=(self.rowNr, 0), span=(1,1), flag=wx.LEFT) self.GetSizer().Add(button, pos=(self.rowNr, 1), span=(1,1), flag=wx.LEFT) + self.rowNr += 1 return text, button def AllowNext(self): diff --git a/Cura/gui/mainWindow.py b/Cura/gui/mainWindow.py index 07bfe864..6822e680 100644 --- a/Cura/gui/mainWindow.py +++ b/Cura/gui/mainWindow.py @@ -206,8 +206,8 @@ class mainWindow(configBase.configWindowBase): # load and slice buttons. loadButton = wx.Button(self, -1, 'Load Model') - sliceButton = wx.Button(self, -1, 'Slice to GCode') - printButton = wx.Button(self, -1, 'Print GCode') + sliceButton = wx.Button(self, -1, 'Prepare print') + printButton = wx.Button(self, -1, 'Print') self.Bind(wx.EVT_BUTTON, lambda e: self._showModelLoadDialog(1), loadButton) self.Bind(wx.EVT_BUTTON, self.OnSlice, sliceButton) self.Bind(wx.EVT_BUTTON, self.OnPrint, printButton) diff --git a/Cura/gui/simpleMode.py b/Cura/gui/simpleMode.py index 266ac2b9..ea580e66 100644 --- a/Cura/gui/simpleMode.py +++ b/Cura/gui/simpleMode.py @@ -100,8 +100,8 @@ class simpleModeWindow(configBase.configWindowBase): # load and slice buttons. loadButton = wx.Button(self, -1, 'Load Model') - sliceButton = wx.Button(self, -1, 'Slice to GCode') - printButton = wx.Button(self, -1, 'Print GCode') + sliceButton = wx.Button(self, -1, 'Prepare print') + printButton = wx.Button(self, -1, 'Print') self.Bind(wx.EVT_BUTTON, self.OnLoadModel, loadButton) self.Bind(wx.EVT_BUTTON, self.OnSlice, sliceButton) self.Bind(wx.EVT_BUTTON, self.OnPrint, printButton)