chiark / gitweb /
Changes in configuration wizard.
authorSteven Abadie <steven@alephobjects.com>
Mon, 27 Oct 2014 05:14:46 +0000 (23:14 -0600)
committerSteven Abadie <steven@alephobjects.com>
Mon, 27 Oct 2014 05:14:46 +0000 (23:14 -0600)
Moved LulzBot printer to the top two in the configuration wizard. Set the LulzBot Mini as the default selection.

Cura/gui/configWizard.py

index 8bb7e9d64d8580c857b7dc97d2fd09b71c1b188f..0759195a9266cd6de6c123cb6a486a97bd3c7d0d 100644 (file)
@@ -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()