Fixed a bug when closing the 3D view while it is still loading or processing.

Working on adding material settings to 3D view.
This commit is contained in:
larsbrubaker 2014-09-26 15:04:04 -07:00
parent 1b767a6abc
commit e75dc94e0d
2 changed files with 77 additions and 6 deletions

View file

@ -368,6 +368,14 @@ namespace MatterHackers.MatterControl.SlicerConfiguration
}
}
public int ExtruderCount
{
get
{
return int.Parse(ActiveSliceSettings.Instance.GetActiveValue("extruder_count"));
}
}
public double NozzleDiameter
{
get { return ParseDouble(GetActiveValue("nozzle_diameter")); }