From: Steven Abadie Date: Mon, 9 Feb 2015 04:22:28 +0000 (-0700) Subject: Fix TAZ 5 quick print HIPS selection X-Git-Tag: lulzbot-15.02.1-1.01~65 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=3be7b8968461ebf4281253dbd0378eee79563e71;p=cura.git Fix TAZ 5 quick print HIPS selection --- diff --git a/Cura/gui/simpleMode.py b/Cura/gui/simpleMode.py index 90ef376f..f98ed3d2 100644 --- a/Cura/gui/simpleMode.py +++ b/Cura/gui/simpleMode.py @@ -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())