Cleaning up default materials

This commit is contained in:
Lars Brubaker 2022-03-18 15:58:13 -07:00
parent a3f7c879bd
commit c3aaf505e1
14 changed files with 61 additions and 44 deletions

View file

@ -112,7 +112,15 @@ namespace MatterHackers.MatterControl.SlicerConfiguration
showControlBar = value;
}
}
}
public void UpdateAllStyles()
{
foreach(var child in this.Descendants<SliceSettingsRow>())
{
child.UpdateStyle();
}
}
}
public class SliceSettingsTabView : SimpleTabs
{