The Ultimaker 2 does not use the material selection. This was previously thought to be a bug created by other changes. Close #43
                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())