Don't wait for position when printing to SD card
This commit is contained in:
parent
3adcc65b9a
commit
8cba27633c
2 changed files with 3 additions and 1 deletions
|
|
@ -2069,7 +2069,8 @@ namespace MatterHackers.MatterControl.PrinterCommunication
|
|||
string[] splitOnSemicolon = lineToWrite.Split(';');
|
||||
string trimedLine = splitOnSemicolon[0].Trim().ToUpper();
|
||||
|
||||
if (lineToWrite.Contains("M114"))
|
||||
if (lineToWrite.Contains("M114")
|
||||
&& CommunicationState != CommunicationStates.PrintingToSd)
|
||||
{
|
||||
waitingForPosition = true;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue