diff --git a/MatterControlLib/PrinterCommunication/Io/ToolChangeStream.cs b/MatterControlLib/PrinterCommunication/Io/ToolChangeStream.cs index db1a157b7..00e075b66 100644 --- a/MatterControlLib/PrinterCommunication/Io/ToolChangeStream.cs +++ b/MatterControlLib/PrinterCommunication/Io/ToolChangeStream.cs @@ -97,7 +97,11 @@ namespace MatterHackers.MatterControl.PrinterCommunication.Io commandQueue.Enqueue(gcodeToQueue); } - commandQueue.Enqueue($"G1 F{feedRate}"); + if (feedRate != double.PositiveInfinity) + { + commandQueue.Enqueue($"G1 F{feedRate}"); + } + commandQueue.Enqueue(lineIn); queuedSwitch = true; }