Skip to content

ThreeAxisCNCInterpreter.cs HasTypeFilter #10

@barriopedro

Description

@barriopedro

I think there is an error

public virtual void Interpret(GCodeFile file, InterpretArgs args)
		{
			IEnumerable<GCodeLine> lines_enum =
				(args.HasTypeFilter) ? file.AllLines() : file.AllLinesOfType(args.eTypeFilter);

Should be
(args.HasTypeFilter) ? file.AllLinesOfType(args.eTypeFilter) : file.AllLines() :;

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions