Updated static data printers

This commit is contained in:
Lars Brubaker 2018-06-14 18:36:13 -07:00
parent 445d1e7dd5
commit 5cd9a2fd58
96 changed files with 23049 additions and 405 deletions

View file

@ -1003,7 +1003,8 @@ namespace MatterControl.Printing
lastPrintLine = instructionIndex;
do
{
line = GCodeCommandQueue[lastPrintLine++].Line;
line = GCodeCommandQueue[Math.Min(GCodeCommandQueue.Count - 1, lastPrintLine)].Line;
lastPrintLine++;
} while (line != "; MatterSlice Completed Successfully"
&& lastPrintLine < endIndex);