From 81bf0ee0b1fe90f307bde81eb23cb081e576c1a5 Mon Sep 17 00:00:00 2001 From: Steven Abadie Date: Tue, 28 Oct 2014 21:55:47 -0600 Subject: [PATCH] Corrected Mini configWizard ready page Close #30 --- Cura/gui/configWizard.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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): -- 2.30.2