From e1d40ab331e309adb127ca315485b7b6a489712d Mon Sep 17 00:00:00 2001 From: Steven Abadie Date: Sun, 26 Oct 2014 23:14:46 -0600 Subject: [PATCH] Changes in configuration wizard. Moved LulzBot printer to the top two in the configuration wizard. Set the LulzBot Mini as the default selection. --- Cura/gui/configWizard.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Cura/gui/configWizard.py b/Cura/gui/configWizard.py index 8bb7e9d6..0759195a 100644 --- a/Cura/gui/configWizard.py +++ b/Cura/gui/configWizard.py @@ -385,8 +385,12 @@ class MachineSelectPage(InfoPage): super(MachineSelectPage, self).__init__(parent, _("Select your machine")) self.AddText(_("What kind of machine do you have:")) - self.Ultimaker2Radio = self.AddRadioButton("Ultimaker2", style=wx.RB_GROUP) - self.Ultimaker2Radio.SetValue(True) + self.LulzbotMiniRadio = self.AddRadioButton("Lulzbot Mini", style=wx.RB_GROUP) + self.LulzbotMiniRadio.Bind(wx.EVT_RADIOBUTTON, self.OnLulzbotSelect) + self.LulzbotMiniRadio.SetValue(True) + self.LulzbotTazRadio = self.AddRadioButton("Lulzbot TAZ") + self.LulzbotTazRadio.Bind(wx.EVT_RADIOBUTTON, self.OnLulzbotSelect) + self.Ultimaker2Radio = self.AddRadioButton("Ultimaker2") self.Ultimaker2Radio.Bind(wx.EVT_RADIOBUTTON, self.OnUltimaker2Select) self.UltimakerRadio = self.AddRadioButton("Ultimaker Original") self.UltimakerRadio.Bind(wx.EVT_RADIOBUTTON, self.OnUltimakerSelect) @@ -394,10 +398,6 @@ class MachineSelectPage(InfoPage): self.UltimakerOPRadio.Bind(wx.EVT_RADIOBUTTON, self.OnUltimakerOPSelect) self.PrintrbotRadio = self.AddRadioButton("Printrbot") self.PrintrbotRadio.Bind(wx.EVT_RADIOBUTTON, self.OnPrintrbotSelect) - self.LulzbotTazRadio = self.AddRadioButton("Lulzbot TAZ") - self.LulzbotTazRadio.Bind(wx.EVT_RADIOBUTTON, self.OnLulzbotSelect) - self.LulzbotMiniRadio = self.AddRadioButton("Lulzbot Mini") - self.LulzbotMiniRadio.Bind(wx.EVT_RADIOBUTTON, self.OnLulzbotSelect) self.OtherRadio = self.AddRadioButton(_("Other (Ex: RepRap, MakerBot, Witbox)")) self.OtherRadio.Bind(wx.EVT_RADIOBUTTON, self.OnOtherSelect) self.AddSeperator() -- 2.30.2