chiark / gitweb /
Fixed #202
authorDaid <daid303@gmail.com>
Tue, 28 Aug 2012 08:19:55 +0000 (10:19 +0200)
committerDaid <daid303@gmail.com>
Tue, 28 Aug 2012 08:19:55 +0000 (10:19 +0200)
Cura/gui/configWizard.py
Cura/gui/mainWindow.py
Cura/gui/simpleMode.py

index 8524f7e473cc433160807db28af005ca75e19097..37b707b2785a2c4cda9df4c241967861f5bad8b8 100644 (file)
@@ -85,6 +85,7 @@ class InfoPage(wx.wizard.WizardPageSimple):
                button = wx.Button(self, -1, buttonText)\r
                self.GetSizer().Add(text, pos=(self.rowNr, 0), span=(1,1), flag=wx.LEFT)\r
                self.GetSizer().Add(button, pos=(self.rowNr, 1), span=(1,1), flag=wx.LEFT)\r
+               self.rowNr += 1\r
                return text, button\r
                \r
        def AllowNext(self):\r
index 07bfe864c75a318bfc8df53e21f07af870a3abb3..6822e680d0cc50fcf003ab25d38640c7a7b766cc 100644 (file)
@@ -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)
index 266ac2b9e07040c6da00dd786fda61f14085feb8..ea580e6651cd09e359f34e18fe62b15e4407ba19 100644 (file)
@@ -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)