From 3be7b8968461ebf4281253dbd0378eee79563e71 Mon Sep 17 00:00:00 2001 From: Steven Abadie Date: Sun, 8 Feb 2015 21:22:28 -0700 Subject: [PATCH] Fix TAZ 5 quick print HIPS selection --- Cura/gui/simpleMode.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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()) -- 2.30.2