From: daid Date: Wed, 21 May 2014 06:55:44 +0000 (+0200) Subject: Actually send simple mode to the engine. X-Git-Tag: 14.06~14 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=4e3379df264a4391c37bc88720ccb4e382bd17a6;p=cura.git Actually send simple mode to the engine. --- diff --git a/Cura/util/sliceEngine.py b/Cura/util/sliceEngine.py index baa4fd47..ee15745d 100644 --- a/Cura/util/sliceEngine.py +++ b/Cura/util/sliceEngine.py @@ -558,6 +558,8 @@ class Engine(object): settings['gcodeFlavor'] = 5 if profile.getProfileSetting('spiralize') == 'True': settings['spiralizeMode'] = 1 + if profile.getProfileSetting('simple_mode') == 'True': + settings['simpleMode'] = 1 if profile.getProfileSetting('wipe_tower') == 'True' and extruderCount > 1: settings['wipeTowerSize'] = int(math.sqrt(profile.getProfileSettingFloat('wipe_tower_volume') * 1000 * 1000 * 1000 / settings['layerThickness'])) if profile.getProfileSetting('ooze_shield') == 'True':