Making T1 setup dependent on having T1 used in the print

issue: MatterHackers/MCCentral#5497
Create protocol for single material setup on dual printer
This commit is contained in:
Lars Brubaker 2019-05-14 18:20:02 -07:00
parent 00a22e5cc8
commit 77020ee924
10 changed files with 129 additions and 83 deletions

View file

@ -159,7 +159,7 @@ namespace MatterHackers.MatterControl.PartPreviewWindow
};
// Perform validation before popup
var errors = printer.Validate();
var errors = printer.Validate(true);
// Enable print option when no validation Errors exists
var printEnabled = !errors.Any(err => err.ErrorLevel == ValidationErrorLevel.Error);