chiark / gitweb /
Corrected Mini configWizard ready page
authorSteven Abadie <steven@alephobjects.com>
Wed, 29 Oct 2014 03:55:47 +0000 (21:55 -0600)
committerSteven Abadie <steven@alephobjects.com>
Wed, 29 Oct 2014 03:55:47 +0000 (21:55 -0600)
Close #30

Cura/gui/configWizard.py

index 0dd0172608b49111e26125648b3ad7bb9e49665c..d71cfcc411e3efab0b1bb4c03f9b0be69b94c21d 100644 (file)
@@ -426,7 +426,7 @@ class MachineSelectPage(InfoPage):
                wx.wizard.WizardPageSimple.Chain(self, self.GetParent().otherMachineSelectPage)
 
        def AllowNext(self):
-               wx.wizard.WizardPageSimple.Chain(self, self.GetParent().ultimaker2ReadyPage)
+               wx.wizard.WizardPageSimple.Chain(self, self.GetParent().lulzbotReadyPage)
                return True
 
        def StoreData(self):
@@ -980,7 +980,10 @@ class Ultimaker2ReadyPage(InfoPage):
 class LulzbotReadyPage(InfoPage):
        def __init__(self, parent):
                super(LulzbotReadyPage, self).__init__(parent, "Lulzbot TAZ/Mini")
-               self.AddText('Cura is now ready to be used with your Lulzbot.')
+               self.AddText('Cura is now ready to be used with your Lulzbot 3D printer.')
+               self.AddSeperator()
+               self.AddText('For more information about using Cura with your LulzBot')
+               self.AddText('3D printer, please visit www.LulzBot.com/cura')
                self.AddSeperator()
 
 class configWizard(wx.wizard.Wizard):