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

Closes #780
(cherry picked from commit 5c35a28)
This commit is contained in:
Gina Häußge 2015-02-22 15:15:45 +01:00
parent 4fede5a9c6
commit 89d972ff40

View file

@ -390,9 +390,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()