From 5c3a03d5b7a1b08176db9dee5b9afe7acec9261a Mon Sep 17 00:00:00 2001 From: Steven Abadie Date: Thu, 18 Dec 2014 21:49:17 -0700 Subject: [PATCH] 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 --- Cura/gui/simpleMode.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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()) -- 2.30.2