Adding a send g-code object

This commit is contained in:
Lars Brubaker 2022-06-17 10:51:05 -07:00
parent a28d5df02e
commit 60f5d06742
12 changed files with 368 additions and 15 deletions

View file

@ -1088,7 +1088,7 @@ namespace MatterHackers.MatterControl.PartPreviewWindow
}
}
foreach (var item in scene.Descendants().Where(i => i is ICustomEditorDraw customEditorDraw1 && customEditorDraw1.DoEditorDraw(i == selectedItem)))
foreach (var item in scene.Descendants().Where(i => i is IEditorDrawControled customEditorDraw1 && customEditorDraw1.DoEditorDraw(i == selectedItem)))
{
editorDrawItems.Add(item);
}