Making it easier to start a print that will not ask for feedback

Ability to ask what printer an object is on
Starting work on ability to have a button on an object to execute arbitrary code
Cleanup and dead code removal
This commit is contained in:
Lars Brubaker 2021-01-14 15:49:34 -08:00
parent 5dbcf8c06c
commit 9fa1061f1e
13 changed files with 100 additions and 38 deletions

View file

@ -328,7 +328,8 @@ namespace MatterHackers.MatterControl
this.EditContext,
this.Printer,
null,
CancellationToken.None);
CancellationToken.None,
true);
}
public async Task StashAndPrint(IEnumerable<ILibraryItem> selectedLibraryItems)
@ -348,7 +349,8 @@ namespace MatterHackers.MatterControl
this.EditContext,
this.Printer,
null,
CancellationToken.None);
CancellationToken.None,
true);
}
private GCodeFile loadedGCode;