From c8fb4ca80fafb94e560f04f24f949ceeaa97cd2b Mon Sep 17 00:00:00 2001 From: daid Date: Mon, 6 Aug 2012 10:18:09 +0200 Subject: [PATCH] Fix a bug in the project planner when the temperature is set to zero --- Cura/gui/projectPlanner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cura/gui/projectPlanner.py b/Cura/gui/projectPlanner.py index 954b001..0f71ec8 100644 --- a/Cura/gui/projectPlanner.py +++ b/Cura/gui/projectPlanner.py @@ -969,7 +969,7 @@ class ProjectSliceProgressWindow(wx.Frame): else: #reset the extrusion length, and move to the next object center. resultFile.write(';TYPE:CUSTOM\n') - if prevTemp != action.temperature: + if prevTemp != action.temperature and action.temperature > 0: resultFile.write('M104 S%d\n' % (int(action.temperature))) prevTemp = action.temperature resultFile.write(profile.getAlterationFileContents('nextobject.gcode'))