chiark / gitweb /
HIPS is now selected by default in the Mini and TAZ quick print settings.
authorSteven Abadie <steven@alephobjects.com>
Fri, 19 Dec 2014 04:49:17 +0000 (21:49 -0700)
committerSteven Abadie <steven@alephobjects.com>
Fri, 19 Dec 2014 04:49:17 +0000 (21:49 -0700)
The Ultimaker 2 does not use the material selection. This was previously thought to be a bug created by other changes. Close #43

Cura/gui/simpleMode.py

index 9789372dedca04939e8c2d451956680c6462dc9b..51f9a1c71ba730c7dd5a16368f9cc17b53357278 100644 (file)
@@ -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())