Revise plugins

This commit is contained in:
John Lewin 2019-02-04 08:41:08 -08:00
parent 9eeac1c782
commit 0b1e3732c4
29 changed files with 566 additions and 167 deletions

View file

@ -631,7 +631,7 @@ namespace MatterHackers.MatterControl.DesignTools
}
// Use known IObject3D editors
else if (propertyValue is IObject3D item
&& ApplicationController.Instance.GetEditorsForType(property.PropertyType)?.FirstOrDefault() is IObject3DEditor iObject3DEditor)
&& ApplicationController.Instance.Extensions.GetEditorsForType(property.PropertyType)?.FirstOrDefault() is IObject3DEditor iObject3DEditor)
{
rowContainer = iObject3DEditor.Create(item, theme);
}