Working on validating current default settings

This commit is contained in:
LarsBrubaker 2020-08-27 07:47:37 -07:00
parent 6a5c4756cc
commit e71aacbedb
8 changed files with 90 additions and 12 deletions

View file

@ -133,7 +133,10 @@ namespace MatterHackers.MatterControl.Library
{
using (var meshStream = AggContext.StaticData.OpenStream(Path.Combine("Stls", "openscad_logo.stl")))
{
this.item.Mesh = Object3D.Load(meshStream, ".stl", CancellationToken.None).Mesh;
using (new CenterAndHeightMaintainer(this.item))
{
this.item.Mesh = Object3D.Load(meshStream, ".stl", CancellationToken.None).Mesh;
}
}
// TODO: Use assets system
@ -143,8 +146,11 @@ namespace MatterHackers.MatterControl.Library
if (err == 0)
{
// Reload the mesh
this.item.Mesh = StlProcessing.Load(outputPath, CancellationToken.None);
using (new CenterAndHeightMaintainer(this.item))
{
// Reload the mesh
this.item.Mesh = StlProcessing.Load(outputPath, CancellationToken.None);
}
}
};
actionButtons.AddChild(updateButton);