Add test exception for 3D Stuffmaker/SupportMaterialAssignedToExtruderOne
This commit is contained in:
parent
0ebfd29d1b
commit
67b9c71d05
1 changed files with 6 additions and 0 deletions
|
|
@ -335,6 +335,12 @@ namespace MatterControl.Tests.MatterControl
|
||||||
{
|
{
|
||||||
ValidateOnAllPrinters((printer, settings) =>
|
ValidateOnAllPrinters((printer, settings) =>
|
||||||
{
|
{
|
||||||
|
// Make exception for extruder assignment on 3D Stuffmaker slice files
|
||||||
|
if (printer.Oem == "3D Stuffmaker" && settings.RelativeFilePath.IndexOf(".slice", StringComparison.OrdinalIgnoreCase) != -1)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
string supportMaterialExtruder = settings.LayerCascade.GetValue("support_material_extruder");
|
string supportMaterialExtruder = settings.LayerCascade.GetValue("support_material_extruder");
|
||||||
if (!string.IsNullOrEmpty(supportMaterialExtruder) && printer.Oem != "Esagono")
|
if (!string.IsNullOrEmpty(supportMaterialExtruder) && printer.Oem != "Esagono")
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue