Made it so that you can add fonts and (open with 'system file')

Fixed BaseObject
This commit is contained in:
MatterHackers 2023-12-03 21:00:59 -08:00
parent 74db968eee
commit c2bf2ad5a5
8 changed files with 43 additions and 14 deletions

View file

@ -231,10 +231,10 @@ namespace MatterHackers.MatterControl.DesignTools
});
// and create the base
var vertexSource = GetRawPath();
var vertexSource = this.CombinedVisibleChildrenPaths();
// Convert VertexSource into expected Polygons
Polygons polygonShape = (vertexSource == null) ? null : vertexSource.CreatePolygons();
// Convert VertexSource into expected Polygons
Polygons polygonShape = (vertexSource == null) ? null : vertexSource.CreatePolygons();
GenerateBase(polygonShape, firstChild.GetAxisAlignedBoundingBox().MinXYZ.Z);
}