Getting ChildVisabilytObject working

This commit is contained in:
LarsBrubaker 2019-02-04 08:38:58 -08:00
parent dcf473f6b4
commit 4017c38a49
5 changed files with 20 additions and 15 deletions

View file

@ -55,12 +55,12 @@ namespace MatterHackers.MatterControl.SlicerConfiguration
// Enum keyed on name to friendly name
List<(string key, string value)> names = null;
var selectedName = "";
if (property.source is AlignObject3D item)
if (property.source is SelectedChildContainer item)
{
names = item.Children.Select(child => (child.ID, child.Name)).ToList();
if (item.AnchorObjectSelector.Count == 1)
if (item.SelectedChild.Count == 1)
{
var selectedKey = item.AnchorObjectSelector[0];
var selectedKey = item.SelectedChild[0];
foreach(var name in names)
{
if(name.key == selectedKey)