quick fix. avoids sending M110 N0 command as it is not supported by grbl. fixes #2
This commit is contained in:
parent
b85ee58b4e
commit
96223a53fe
1 changed files with 2 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue