From: Steven Abadie Date: Mon, 27 Oct 2014 05:14:46 +0000 (-0600) Subject: Changes in configuration wizard. X-Git-Tag: 14.09-1.18~85 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=e1d40ab331e309adb127ca315485b7b6a489712d;p=cura.git Changes in configuration wizard. Moved LulzBot printer to the top two in the configuration wizard. Set the LulzBot Mini as the default selection. --- 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()