Always make sure to (re)set file position to the beginning when starting SD card prints

Closes #780
This commit is contained in:
Gina Häußge 2015-02-22 15:15:45 +01:00
parent ad23c88347
commit 5c35a288a3

View file

@ -407,9 +407,8 @@ class MachineCom(object):
})
if self.isSdFileSelected():
if wasPaused:
self.sendCommand("M26 S0")
self._currentFile.setFilepos(0)
self.sendCommand("M26 S0")
self._currentFile.setFilepos(0)
self.sendCommand("M24")
else:
self._sendNext()