From: Steven Abadie Date: Fri, 19 Dec 2014 04:49:17 +0000 (-0700) Subject: HIPS is now selected by default in the Mini and TAZ quick print settings. X-Git-Tag: 14.09-1.18~19 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=5c3a03d5b7a1b08176db9dee5b9afe7acec9261a;p=cura.git HIPS is now selected by default in the Mini and TAZ quick print settings. The Ultimaker 2 does not use the material selection. This was previously thought to be a bug created by other changes. Close #43 --- diff --git a/Cura/gui/simpleMode.py b/Cura/gui/simpleMode.py index 9789372d..51f9a1c7 100644 --- a/Cura/gui/simpleMode.py +++ b/Cura/gui/simpleMode.py @@ -65,7 +65,10 @@ class simpleModePanel(wx.Panel): sizer.Add(boxsizer, (2,0), flag=wx.EXPAND) self.printTypeNormal.SetValue(True) - self.printMaterialPLA.SetValue(True) + if profile.getMachineSetting('machine_type') == 'lulzbot_mini' or profile.getMachineSetting('machine_type') == 'lulzbot_TAZ': + self.printMaterialHIPS.SetValue(True) + else: + self.printMaterialPLA.SetValue(True) self.printTypeHigh.Bind(wx.EVT_RADIOBUTTON, lambda e: self._callback()) self.printTypeNormal.Bind(wx.EVT_RADIOBUTTON, lambda e: self._callback())