Fixed a stupid problem with adding instructions to the queue.

This commit is contained in:
larsbrubaker 2014-04-09 16:53:08 -07:00
parent 0bde3b14e4
commit 7629750e02
7 changed files with 63 additions and 37 deletions

View file

@ -173,7 +173,7 @@ namespace MatterHackers.MatterControl
protected void SentCommandToPrinter(string command)
{
PrinterCommunication.Instance.QueueLineToPrinter(command);
PrinterCommunication.Instance.SendLineToPrinterNow(command);
}
}
}