From e4c6fff6b8a8ccbbcd6c420416b2d1d75ef8bf68 Mon Sep 17 00:00:00 2001 From: Arjen Hiemstra Date: Fri, 17 Apr 2015 11:21:58 +0200 Subject: [PATCH] Send "fanFullOnLayer" setting to the engine --- CuraEngineBackend.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CuraEngineBackend.py b/CuraEngineBackend.py index 209a03ee34..0d4e53a2ba 100644 --- a/CuraEngineBackend.py +++ b/CuraEngineBackend.py @@ -326,7 +326,6 @@ class CuraEngineBackend(Backend): 'insetXSpeed': int(self._settings.getSettingValueByKey('speed_wall_x')), 'supportSpeed': int(self._settings.getSettingValueByKey('speed_support')), 'moveSpeed': int(self._settings.getSettingValueByKey('speed_travel')), - #'fanFullOnLayerNr': int(fbk('cool_fan_full_layer')), 'infillOverlap': int(self._settings.getSettingValueByKey('fill_overlap')), 'infillSpeed': int(self._settings.getSettingValueByKey('speed_infill')), @@ -336,6 +335,7 @@ class CuraEngineBackend(Backend): 'coolHeadLift': 1 if self._settings.getSettingValueByKey('cool_lift_head') else 0, 'fanSpeedMin': self._settings.getSettingValueByKey('cool_fan_speed_min'), 'fanSpeedMax': self._settings.getSettingValueByKey('cool_fan_speed_max'), + 'fanFullOnLayerNr': self._settings.getSettingValueByKey('cool_fan_full_layer'), 'spiralizeMode': 1 if self._settings.getSettingValueByKey('magic_spiralize') == 'True' else 0,