From 4e3379df264a4391c37bc88720ccb4e382bd17a6 Mon Sep 17 00:00:00 2001 From: daid Date: Wed, 21 May 2014 08:55:44 +0200 Subject: [PATCH] Actually send simple mode to the engine. --- Cura/util/sliceEngine.py | 2 ++ 1 file changed, 2 insertions(+) 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': -- 2.30.2