Improving color picker

Working to make materials have a color picker as well
This commit is contained in:
Lars Brubaker 2021-01-27 17:51:53 -08:00
parent 9c2c5e29f6
commit 515ea27e4f
5 changed files with 55 additions and 23 deletions

View file

@ -234,6 +234,11 @@ namespace MatterHackers.MatterControl
return popupMenu;
}
public void GetEyeDropperColor(Action<Color> setColor)
{
setColor?.Invoke(Color.Cyan);
}
public PopupMenu GetModifyMenu(ISceneContext sceneContext)
{
var popupMenu = new PopupMenu(this.MenuTheme);