Fix typo
This commit is contained in:
parent
c769973199
commit
3dc77e534c
1 changed files with 2 additions and 2 deletions
|
|
@ -766,8 +766,8 @@ namespace MatterControl.Printing
|
|||
{
|
||||
if (instructionIndexToCheck > 1 && instructionIndexToCheck < GCodeCommandQueue.Count)
|
||||
{
|
||||
double extrusionLengeth = GCodeCommandQueue[instructionIndexToCheck].EPosition - GCodeCommandQueue[instructionIndexToCheck - 1].EPosition;
|
||||
if (extrusionLengeth > 0)
|
||||
double extrusionLength = GCodeCommandQueue[instructionIndexToCheck].EPosition - GCodeCommandQueue[instructionIndexToCheck - 1].EPosition;
|
||||
if (extrusionLength > 0)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue