From: Steven Abadie Date: Wed, 29 Oct 2014 03:55:47 +0000 (-0600) Subject: Corrected Mini configWizard ready page X-Git-Tag: 14.09-1.18~79 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=81bf0ee0b1fe90f307bde81eb23cb081e576c1a5;p=cura.git Corrected Mini configWizard ready page Close #30 --- diff --git a/Cura/gui/configWizard.py b/Cura/gui/configWizard.py index 0dd01726..d71cfcc4 100644 --- a/Cura/gui/configWizard.py +++ b/Cura/gui/configWizard.py @@ -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):