chiark / gitweb /
Fix TAZ 5 quick print HIPS selection
authorSteven Abadie <steven@alephobjects.com>
Mon, 9 Feb 2015 04:22:28 +0000 (21:22 -0700)
committerYouness Alaoui <kakaroto@kakaroto.homelinux.net>
Thu, 12 Feb 2015 19:58:55 +0000 (14:58 -0500)
Cura/gui/simpleMode.py

index 90ef376f112f9f45ef2fea3ea05a34847b0adda6..f98ed3d258fe374d44a2f9d849efc33978596b41 100644 (file)
@@ -66,7 +66,7 @@ class simpleModePanel(wx.Panel):
                sizer.Add(boxsizer, (2,0), flag=wx.EXPAND)
 
                self.printTypeNormal.SetValue(True)
-               if profile.getMachineSetting('machine_type') == 'lulzbot_mini' or profile.getMachineSetting('machine_type') == 'lulzbot_TAZ':
+               if profile.getMachineSetting('machine_type') == 'lulzbot_mini' or profile.getMachineSetting('machine_type') == 'lulzbot_TAZ_5' or profile.getMachineSetting('machine_type') == 'lulzbot_TAZ_4':
                        self.printMaterialHIPS.SetValue(True)
                else:
                        self.printMaterialPLA.SetValue(True)
@@ -78,7 +78,7 @@ class simpleModePanel(wx.Panel):
 
                self.printMaterialPLA.Bind(wx.EVT_RADIOBUTTON, lambda e: self._callback())
                self.printMaterialABS.Bind(wx.EVT_RADIOBUTTON, lambda e: self._callback())
-               if profile.getMachineSetting('machine_type') == 'lulzbot_mini' or profile.getMachineSetting('machine_type') == 'lulzbot_TAZ' or profile.getMachineSetting('machine_type') == 'lulzbot_TAZ_4':
+               if profile.getMachineSetting('machine_type') == 'lulzbot_mini' or profile.getMachineSetting('machine_type') == 'lulzbot_TAZ_5' or profile.getMachineSetting('machine_type') == 'lulzbot_TAZ_4':
                        self.printMaterialHIPS.Bind(wx.EVT_RADIOBUTTON, lambda e: self._callback())
 
                self.printSupport.Bind(wx.EVT_CHECKBOX, lambda e: self._callback())