Fixing a problem when there is support and no holes

This commit is contained in:
LarsBrubaker 2022-06-11 13:39:20 -07:00
parent de5d809b00
commit cb72d3c52d

View file

@ -633,7 +633,7 @@ namespace MatterHackers.MatterControl.SlicerConfiguration
mergeString += "+";
}
}
else if (holes.Any())
else if (holes?.Any() == true)
{
mergeString += ",";
}