From: daid Date: Mon, 28 Oct 2013 09:35:49 +0000 (+0100) Subject: Use proper start2.gcode when doing dual-extrusion-support-material. X-Git-Tag: 13.11.2~39 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=1bd07c41fe967fb585ae53ae90e9b8372ea8fc44;p=cura.git Use proper start2.gcode when doing dual-extrusion-support-material. --- diff --git a/Cura/util/sliceEngine.py b/Cura/util/sliceEngine.py index 8944b057..84dbb0f1 100644 --- a/Cura/util/sliceEngine.py +++ b/Cura/util/sliceEngine.py @@ -115,6 +115,8 @@ class Slicer(object): for obj in scene.objects(): if scene.checkPlatform(obj): extruderCount = max(extruderCount, len(obj._meshList)) + if profile.getProfileSetting('support_dual_extrusion') == 'Second extruder': + extruderCount = max(extruderCount, 2) commandList = [getEngineFilename(), '-vv'] for k, v in self._engineSettings(extruderCount).iteritems():