Rename SendLineToPrinterNow -> QueueLine

- Issue MatterHackers/MCCentral#2550
SendLineToPrinterNow queues printer commands
This commit is contained in:
John Lewin 2018-01-04 17:30:48 -08:00
parent 2793db6a9a
commit edceab2e85
12 changed files with 74 additions and 86 deletions

View file

@ -269,7 +269,7 @@ namespace MatterHackers.MatterControl
}
commandHistory.Add(textToSend);
commandHistoryIndex = commandHistory.Count;
printer.Connection.SendLineToPrinterNow(textToSend);
printer.Connection.QueueLine(textToSend);
manualCommandTextEdit.Text = "";
}
}