Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYouness Alaoui <kakaroto@kakaroto.homelinux.net>2015-08-27 20:31:51 +0300
committerYouness Alaoui <kakaroto@kakaroto.homelinux.net>2015-08-27 20:31:51 +0300
commit25804e8a069732f7800b160eb5e9bee4eb15a3b9 (patch)
tree4558f55a51ffc2a23fe9e3daafc19e8406087dd5
parent266e48d2f9ed2a3c7600a62dd9efb24bd6bc73e7 (diff)
Remove firmware flashing step for Mini printers
-rw-r--r--Cura/gui/configWizard.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/Cura/gui/configWizard.py b/Cura/gui/configWizard.py
index 04ff6cc846..3549bf6c33 100644
--- a/Cura/gui/configWizard.py
+++ b/Cura/gui/configWizard.py
@@ -1121,7 +1121,7 @@ class LulzbotMachineSelectPage(InfoPage):
def OnLulzbotMiniSelected(self):
wx.wizard.WizardPageSimple.Chain(self, self.GetParent().lulzbotMiniToolheadPage)
wx.wizard.WizardPageSimple.Chain(self.GetParent().lulzbotMiniToolheadPage,
- self.GetParent().lulzbotFirmwarePage)
+ self.GetParent().lulzbotReadyPage)
def OnLulzbotTazSelected(self):
wx.wizard.WizardPageSimple.Chain(self, self.GetParent().lulzbotTazHotendPage)
@@ -1279,6 +1279,7 @@ class LulzbotTazToolheadSelectPage(LulzbotToolheadSelectPage):
wx.wizard.WizardPageSimple.Chain(self.GetParent().lulzbotTaz5NozzleSelectPage, self.GetParent().lulzbotFirmwarePage)
else:
wx.wizard.WizardPageSimple.Chain(self, self.GetParent().lulzbotFirmwarePage)
+ wx.wizard.WizardPageSimple.Chain(self.GetParent().lulzbotFirmwarePage, self.GetParent().lulzbotReadyPage)
def OnSingleV2(self):
wx.wizard.WizardPageSimple.Chain(self, self.GetParent().lulzbotTaz5NozzleSelectPage)
@@ -1445,7 +1446,7 @@ class LulzbotChangeToolheadWizard(wx.wizard.Wizard):
self.lulzbotTazHotendPage = LulzbotHotendSelectPage(self, False)
self.lulzbotTaz5NozzleSelectPage = LulzbotTaz5NozzleSelectPage(self)
- wx.wizard.WizardPageSimple.Chain(self.lulzbotMiniToolheadPage, self.lulzbotFirmwarePage)
+ wx.wizard.WizardPageSimple.Chain(self.lulzbotMiniToolheadPage, self.lulzbotReadyPage)
wx.wizard.WizardPageSimple.Chain(self.lulzbotFirmwarePage, self.lulzbotReadyPage)
wx.wizard.WizardPageSimple.Chain(self.lulzbotTazHotendPage, self.lulzbotTazToolheadPage)
@@ -1509,8 +1510,7 @@ class ConfigWizard(wx.wizard.Wizard):
self.lulzbotMachineSelectPage = LulzbotMachineSelectPage(self)
wx.wizard.WizardPageSimple.Chain(self.lulzbotMachineSelectPage, self.lulzbotMiniToolheadPage)
- wx.wizard.WizardPageSimple.Chain(self.lulzbotMiniToolheadPage, self.lulzbotFirmwarePage)
- wx.wizard.WizardPageSimple.Chain(self.lulzbotFirmwarePage, self.lulzbotReadyPage)
+ wx.wizard.WizardPageSimple.Chain(self.lulzbotMiniToolheadPage, self.lulzbotReadyPage)
wx.wizard.WizardPageSimple.Chain(self.lulzbotTazHotendPage, self.lulzbotTazToolheadPage)
wx.wizard.WizardPageSimple.Chain(self.machineSelectPage, self.ultimakerSelectParts)
wx.wizard.WizardPageSimple.Chain(self.ultimakerSelectParts, self.ultimakerFirmwareUpgradePage)