Fix a bug in the project planner when the temperature is set to zero

master
daid 2012-08-06 10:18:09 +02:00
parent f068900086
commit c8fb4ca80f
1 changed files with 1 additions and 1 deletions

View File

@ -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'))