quick fix. avoids sending M110 N0 command as it is not supported by grbl. fixes #2

This commit is contained in:
Teja 2014-12-22 13:14:54 +01:00
parent b85ee58b4e
commit 96223a53fe

View file

@ -1425,7 +1425,8 @@ class PrintingGcodeFileInformation(PrintingFileInformation):
if self._lineCount is None:
self._lineCount = 0
return "M110 N0"
#return "M110 N0"
return ""
try:
processedLine = None